/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b9d;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8a, #b73e5c);
}

.cta-btn::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Login issues page specific mobile menu button styling */
    .login-issues .mobile-menu-btn span {
        background: #d4af37;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .login-issues .mobile-menu-btn:hover span {
        background: #b8941f;
    }
    
    .nav-menu,
    .nav-links {
        display: flex !important;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active,
    .nav-links.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a,
    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 20px;
        display: block;
        color: #2d3748;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-links a:hover {
        color: #d4af37;
        background: rgba(212, 175, 55, 0.1);
    }
    
    /* Login issues page specific mobile menu link styling */
    .login-issues .nav-menu a,
    .login-issues .nav-links a {
        color: #2d3748;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .login-issues .nav-menu a:hover,
    .login-issues .nav-links a:hover {
        color: #d4af37;
        background: rgba(212, 175, 55, 0.1);
        border-bottom-color: #d4af37;
    }
    
    .cta-btn {
        margin-top: 10px;
        display: inline-block;
        padding: 12px 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Additional mobile styles for smaller devices */
@media (max-width: 480px) {
    .nav-menu,
    .nav-links {
        display: flex !important;
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .mobile-menu-btn {
        padding: 8px;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Image Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide:nth-child(1) {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/home1.png');
}

.hero-bg-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/home2.png');
}

.hero-bg-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/home3.jpg');
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Unique Features Section */
.unique-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f2f5 100%);
    position: relative;
}

.unique-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.unique-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card img,
.feature-card svg {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card svg {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card:hover img,
.feature-card:hover svg {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Leadership Team Section - Override for light background */
.why-choose-us.leadership-team {
    color: #2d3748;
}

.why-choose-us.leadership-team h2 {
    color: #2d3748;
}

.why-choose-us.leadership-team .section-intro {
    color: #4a5568;
}

.why-choose-us.leadership-team .feature-content h3 {
    color: #2d3748;
}

.why-choose-us.leadership-team .feature-content p {
    color: #4a5568;
}

.why-choose-us.leadership-team .feature-highlights li {
    color: #4a5568;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-item img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-highlights li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.4;
}

.feature-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Quality Services Section */
.quality-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b9d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.quality-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.quality-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-card svg {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.service-card p {
    line-height: 1.6;
    opacity: 0.95;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Success Stories Section - Love Stories with Carousel */
.success-stories {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.success-stories h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-stories .container {
    max-width: 1200px;
}

/* Carousel Container */
.stories-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.stories-grid {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.story-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.story-image {
    flex: 1;
    max-width: 400px;
    position: relative;
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.story-content {
    flex: 1;
    padding: 3rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    border-radius: 1px;
}

.story-content h4 {
    color: #d4af37;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    font-style: italic;
    position: relative;
    font-family: 'Georgia', serif;
}

.story-content h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(135deg, #d4af37, #ff6b9d);
}

.story-content p {
    font-style: italic;
    line-height: 1.8;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    position: relative;
    font-weight: 300;
}

.story-content p::before {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 107, 157, 0.6);
    font-family: 'Georgia', serif;
    position: absolute;
    top: -15px;
    left: -30px;
}

.story-content p::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 107, 157, 0.6);
    font-family: 'Georgia', serif;
    position: absolute;
    bottom: -25px;
    right: -20px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.nav-dot.active {
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-stories {
        padding: 80px 0;
    }
    
    .success-stories h2 {
        font-size: 2.5rem;
    }
    
    .story-card {
        flex-direction: column;
        min-height: auto;
        text-align: center;
    }
    
    .story-image {
        max-width: 100%;
    }
    
    .story-image img {
        height: 250px;
        margin: 1rem;
    }
    
    .story-content {
        padding: 2rem;
        text-align: center;
    }
    
    .story-content::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-content h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-content h4 {
        font-size: 1.4rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.05rem;
    font-weight: 400;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Top Countries Section */
.top-countries {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
}

.top-countries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.top-countries h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.top-countries .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.country-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.country-card:hover::before {
    opacity: 1;
}

.country-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
}

.country-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.country-card:hover img {
    transform: scale(1.1);
}

.country-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(255, 107, 157, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-card:hover .country-overlay {
    opacity: 1;
}

.join-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.join-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.country-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.country-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.country-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
}

.country-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Countries */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1.5rem;
    }
    
    .country-card {
        min-height: 320px;
    }
    
    .country-card-image {
        height: 150px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.faq-item h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b9d 100%);
    color: white;
    padding: 1.8rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 50%, #ec4899 100%);
}

.faq-item p {
    padding: 1.8rem;
    margin: 0;
    line-height: 1.7;
    color: #4a5568;
    font-size: 0.95rem;
}

/* Join Section */
.join-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b9d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.join-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.join-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.join-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1.4rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.join-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.join-cta:hover::before {
    left: 100%;
}

.join-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.privacy-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-header .last-updated {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 500;
}

.privacy-header .intro {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    background: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.privacy-section h2 {
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.privacy-section h3 {
    color: #4a5568;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    padding-left: 20px;
    border-left: 3px solid #a0aec0;
}

.privacy-section p {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-section li {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    list-style: none;
}

.privacy-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-info {
    background: #f7fafc;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-info strong {
    color: #2d3748;
    font-weight: 600;
}

.privacy-footer {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-radius: 15px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.privacy-footer h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links li::before {
    display: none;
}

.quick-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #667eea;
}

.privacy-summary p {
    color: #a0aec0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .privacy-header {
        margin: 0 20px 40px;
        padding: 30px 20px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-header .intro {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        margin: 0 20px;
    }
    
    .privacy-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    
    .privacy-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 20px 0;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 20px 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section li {
        padding-left: 25px;
        font-size: 1rem;
    }
}

/* Terms of Service Styles */
.terms-of-service {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(118, 75, 162, 0.3);
}

.terms-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.terms-header .last-updated {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 500;
}

.terms-header .intro {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-section {
    background: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #764ba2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.terms-section h2 {
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #764ba2;
    position: relative;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.terms-section h3 {
    color: #4a5568;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    padding-left: 20px;
    border-left: 3px solid #a0aec0;
}

.terms-section p {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.terms-section li {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    list-style: none;
}

.terms-section li::before {
    content: '⚖️';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
}

.terms-section strong {
    color: #2d3748;
    font-weight: 600;
}

.terms-footer {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-radius: 15px;
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.terms-footer h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.acknowledgment p {
    color: #a0aec0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links li::before {
    display: none;
}

.quick-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #764ba2;
}

/* Special styling for important sections */
.terms-section:nth-child(2) {
    border-left-color: #e53e3e;
}

.terms-section:nth-child(2) h2 {
    border-bottom-color: #e53e3e;
}

.terms-section:nth-child(2) h2::after {
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
}

.terms-section:nth-child(4) {
    border-left-color: #d69e2e;
}

.terms-section:nth-child(4) h2 {
    border-bottom-color: #d69e2e;
}

.terms-section:nth-child(4) h2::after {
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
}

.terms-section:nth-child(8) {
    border-left-color: #38a169;
}

.terms-section:nth-child(8) h2 {
    border-bottom-color: #38a169;
}

.terms-section:nth-child(8) h2::after {
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
}

/* Mobile Responsive for Terms of Service */
@media (max-width: 768px) {
    .terms-of-service {
        padding: 100px 0 60px;
    }
    
    .terms-header {
        margin: 0 20px 40px;
        padding: 30px 20px;
    }
    
    .terms-header h1 {
        font-size: 2.5rem;
    }
    
    .terms-header .intro {
        font-size: 1.1rem;
    }
    
    .terms-content {
        margin: 0 20px;
    }
    
    .terms-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.8rem;
    }
    
    .terms-section h3 {
        font-size: 1.3rem;
    }
    
    .terms-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 20px 0;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-section {
        padding: 20px 15px;
    }
    
    .terms-section h2 {
        font-size: 1.6rem;
    }
    
    .terms-section li {
        padding-left: 25px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #f7fafc;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #f7fafc;
    transform: translateX(3px);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    padding: 50px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
}

.final-cta-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #c44569;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: white;
    color: #b73e5c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
        gap: 20px;
        padding: 30px;
    }
    
    .feature-item img {
        width: 180px;
        height: 180px;
    }
    
    .feature-item:nth-child(even) {
        flex-direction: column;
    }
    
    .feature-item:nth-child(even) .feature-content {
        order: 0;
    }
    
    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .feature-content h3 {
        font-size: 1.4rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-highlights li {
        font-size: 0.95rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-item img {
        width: 150px;
        height: 150px;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .feature-highlights li {
        font-size: 0.9rem;
        padding: 6px 0 6px 20px;
    }
    
    .feature-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: 220px;
    }
    
    .service-card svg {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.story-card,
.country-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Hover Effects */
.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Safety Guide Page Styles */
.safety-guide {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #e53e3e 0%, #fd5e53 100%);
    min-height: 100vh;
}

.safety-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.safety-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.safety-header .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 600;
}

.safety-header .intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.safety-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px;
}

.safety-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f1f5f9;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.safety-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.safety-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.safety-section h2 {
    color: #2d3748;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    border-left: 5px solid #e53e3e;
    padding-left: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.safety-section h3 {
    color: #4a5568;
    font-size: 1.5rem;
    margin: 30px 0 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.safety-section h4 {
    color: #2d3748;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.safety-section h5 {
    color: #4a5568;
    font-size: 1.1rem;
    margin: 20px 0 10px;
    font-weight: 600;
}

.safety-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.safety-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.safety-section li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1rem;
}

.safety-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.safety-section ol li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.safety-subsection {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #e53e3e;
}

.intro-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border-left: none;
}

.intro-section h2 {
    color: white;
    border-left: 5px solid white;
}

.intro-section p {
    color: white;
    opacity: 0.95;
}

.intro-section ul {
    color: white;
}

.intro-section li {
    color: white;
    opacity: 0.9;
}

.warning-box {
    background: #fed7d7;
    border: 2px solid #fc8181;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.warning-box h4 {
    color: #c53030;
    margin-bottom: 15px;
    font-weight: 700;
}

.warning-box p {
    color: #742a2a;
    font-weight: 500;
}

.warning-box ul {
    margin: 15px 0;
}

.warning-box li {
    color: #742a2a;
    font-weight: 500;
}

.verification-steps {
    background: #e6fffa;
    border: 2px solid #4fd1c7;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.verification-steps h4 {
    color: #234e52;
    margin-bottom: 15px;
    font-weight: 700;
}

.verification-steps ol {
    margin: 15px 0;
}

.verification-steps li {
    color: #234e52;
    font-weight: 500;
}

.online-safety {
    border-left-color: #3182ce;
}

.offline-safety {
    border-left-color: #38a169;
}

.health-consent {
    border-left-color: #d69e2e;
}

.resources {
    border-left-color: #805ad5;
}

.conclusion {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    border-left: none;
}

.conclusion h2 {
    color: white;
    border-left: 5px solid white;
}

.conclusion p {
    color: white;
    opacity: 0.95;
}

.conclusion ul {
    color: white;
}

.conclusion li {
    color: white;
    opacity: 0.9;
}

.final-contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.final-contact h3 {
    color: white;
    margin-bottom: 15px;
}

.final-contact p {
    color: white;
    opacity: 0.9;
}

.final-contact ul {
    margin: 15px 0;
}

.final-contact li {
    color: white;
    opacity: 0.9;
    font-weight: 500;
}

/* Emergency Contact Button */
.emergency-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e53e3e;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(229, 62, 62, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.emergency-contact:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(229, 62, 62, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(229, 62, 62, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(229, 62, 62, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(229, 62, 62, 0.3);
    }
}

/* Login Issues Page Styles */
.login-issues {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

.login-issues-header {
    text-align: center;
    margin-bottom: 60px;
}

.login-issues-header h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 700;
}

.login-issues-header .subtitle {
    font-size: 1.3rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.login-issues-content {
    max-width: 1000px;
    margin: 0 auto;
}

.login-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.login-section h2 {
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 15px;
}

.login-section h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 30px 0 20px;
    font-weight: 600;
}

.login-section h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 500;
}

.login-section h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 20px 0 10px;
    font-weight: 500;
}

.login-section p {
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.login-section ul,
.login-section ol {
    color: #e2e8f0;
    margin: 20px 0;
    padding-left: 30px;
}

.login-section li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.login-section li strong {
    color: #d4af37;
    font-weight: 600;
}

/* Specialized subsections */
.login-subsection {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #d4af37;
}

.problem-overview {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.step-by-step {
    background: rgba(74, 222, 128, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.security-tips {
    background: rgba(239, 68, 68, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.common-mistakes {
    background: rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.verification-steps,
.lockout-details,
.unlock-process,
.violation-types,
.appeal-process,
.prevention-tips,
.code-issues,
.code-solutions,
.timeout-details,
.session-management,
.device-conflicts,
.device-management,
.location-triggers,
.location-solutions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Support section styles */
.support-channels {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.support-option {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.support-option h5 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-template {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.escalation-process {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Prevention section styles */
.prevention-tip {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
}

.prevention-tip:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.prevention-tip h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detailed-tips {
    margin-top: 20px;
}

.detailed-tips h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 20px 0 10px;
    font-weight: 500;
}

/* FAQ section styles */
.faq-section {
    background: rgba(255, 255, 255, 0.08);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
}

.faq-question h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover h4 {
    color: #ffffff;
}

.faq-toggle {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #e2e8f0;
    line-height: 1.7;
    margin: 0;
}

/* Conclusion section styles */
.conclusion {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.key-takeaways {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.success-mindset {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.final-contact {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(99, 102, 241, 0.3);
    text-align: center;
}

.final-contact h3 {
    color: #d4af37;
    margin-bottom: 20px;
}

/* Responsive design for login issues page */
@media (max-width: 768px) {
    .login-issues {
        padding: 100px 0 60px;
    }
    
    .login-issues-header h1 {
        font-size: 2.2rem;
    }
    
    .login-issues-header .subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .login-section {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .login-section h2 {
        font-size: 1.8rem;
    }
    
    .login-section h3 {
        font-size: 1.4rem;
    }
    
    .login-subsection {
        padding: 20px 15px;
    }
    
    .support-option {
        padding: 20px 15px;
    }
    
    .prevention-tip {
        padding: 20px 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .login-issues-header h1 {
        font-size: 1.8rem;
    }
    
    .login-section {
        padding: 20px 15px;
    }
    
    .login-section h2 {
        font-size: 1.6rem;
    }
    
    .login-section ul,
    .login-section ol {
        padding-left: 20px;
    }
}

/* Mobile Responsiveness for Safety Guide */
@media (max-width: 768px) {
    .safety-content {
        padding: 30px 20px;
        margin: 0 20px;
        border-radius: 15px;
    }
    
    .safety-header h1 {
        font-size: 2.2rem;
    }
    
    .safety-header .subtitle {
        font-size: 1.1rem;
    }
    
    .safety-section h2 {
        font-size: 1.8rem;
        padding-left: 20px;
    }
    
    .safety-section h3 {
        font-size: 1.3rem;
    }
    
    .safety-subsection {
        padding: 20px 15px;
    }
    
    .intro-section {
        padding: 30px 20px;
    }
    
    .conclusion {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .safety-guide {
        padding: 60px 0 40px;
    }
    
    .safety-content {
        padding: 25px 15px;
        margin: 0 15px;
    }
    
    .safety-header h1 {
        font-size: 1.8rem;
    }
    
    .safety-section h2 {
        font-size: 1.5rem;
        padding-left: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .safety-section h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .safety-subsection {
        padding: 15px 10px;
    }
    
    .warning-box {
        padding: 20px 15px;
    }
    
    .verification-steps {
        padding: 20px 15px;
    }
    
    .intro-section {
        padding: 25px 15px;
    }
    
    .conclusion {
        padding: 25px 15px;
    }
    
    .final-contact {
        padding: 20px 15px;
    }
    
    .emergency-contact {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Enhanced Login Issues Page Styles */
/* Quick Overview Section */
.login-issues .quick-overview {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.05));
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.login-issues .overview-visual {
    margin: 30px 0;
}

/* Overview Image Section Styles */
.login-issues .overview-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.02));
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.login-issues .overview-image {
    margin: 25px 0;
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-issues .overview-image svg {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.login-issues .login-success-diagram {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.login-issues .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.login-issues .feature-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.login-issues .feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.login-issues .feature-item h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.login-issues .feature-item p {
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
}

/* Login Problems Table */
.login-issues .login-problems-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.login-issues .login-problems-table th {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.login-issues .login-problems-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    vertical-align: top;
}

.login-issues .login-problems-table tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

.login-issues .login-problems-table td:first-child {
    color: #d4af37;
    font-weight: 600;
}

/* Solution Items */
.login-issues .solution-tabs {
    margin: 30px 0;
}

.login-issues .solution-item {
    background: rgba(255, 255, 255, 0.05);
    margin: 20px 0;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.login-issues .solution-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.login-issues .solution-item h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.login-issues .solution-steps {
    background: rgba(74, 222, 128, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.login-issues .solution-steps ol {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.login-issues .solution-steps li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    padding-left: 55px;
    color: #e2e8f0;
}

.login-issues .solution-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #4ade80;
    color: #1a1a1a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Grid Layouts */
.login-issues .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 20px 0;
}

.login-issues .grid-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.login-issues .grid-item strong {
    color: #d4af37;
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.login-issues .grid-item p {
    color: #e2e8f0;
    margin: 0;
    line-height: 1.6;
}

/* Mini Tables */
.login-issues .mini-table,
.login-issues .session-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.login-issues .mini-table td,
.login-issues .session-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.login-issues .mini-table td:first-child,
.login-issues .session-table td:first-child {
    color: #d4af37;
    font-weight: 600;
    width: 30%;
}

/* Violation Grid */
.login-issues .violation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.login-issues .violation-category {
    background: rgba(239, 68, 68, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.login-issues .violation-category strong {
    color: #ef4444;
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.login-issues .violation-category p {
    color: #e2e8f0;
    margin: 0;
    line-height: 1.6;
}

/* Appeal Steps */
.login-issues .appeal-steps {
    background: rgba(99, 102, 241, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.login-issues .appeal-steps h5 {
    color: #6366f1;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.login-issues .appeal-steps ol {
    color: #e2e8f0;
    margin: 0;
    padding-left: 20px;
}

.login-issues .appeal-steps li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Issue Solution Pairs */
.login-issues .issue-solution-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 20px 0;
}

.login-issues .issue-list,
.login-issues .solution-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.login-issues .issue-list strong {
    color: #ef4444;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.login-issues .solution-list strong {
    color: #4ade80;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.login-issues .issue-list ul,
.login-issues .solution-list ul {
    margin: 0;
    padding-left: 20px;
    color: #e2e8f0;
}

.login-issues .issue-list li,
.login-issues .solution-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Device Management Visual */
.login-issues .device-management-visual {
    text-align: center;
    margin: 30px 0;
}

.login-issues .device-diagram {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.login-issues .device-solutions {
    margin-top: 25px;
}

.login-issues .device-tips {
    background: rgba(74, 222, 128, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.login-issues .device-tips strong {
    color: #4ade80;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.login-issues .device-tips ul {
    margin: 0;
    padding-left: 20px;
    color: #e2e8f0;
}

.login-issues .device-tips li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Location Solutions Grid */
.login-issues .location-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.login-issues .location-scenario {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.login-issues .location-scenario:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.login-issues .location-scenario h5 {
    color: #fbbf24;
    margin-bottom: 18px;
    font-size: 1.2rem;
    font-weight: 600;
}

.login-issues .location-scenario ul {
    margin: 0;
    padding-left: 20px;
    color: #e2e8f0;
}

.login-issues .location-scenario li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .login-issues .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .login-issues .solution-grid,
    .login-issues .issue-solution-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .login-issues .violation-grid,
    .login-issues .location-solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .login-issues .solution-steps li {
        padding-left: 45px;
    }
    
    .login-issues .solution-steps li::before {
        width: 25px;
        height: 25px;
        font-size: 12px;
        left: 12px;
    }
    
    .login-issues .quick-overview {
        padding: 25px 20px;
    }
    
    .login-issues .solution-item {
        padding: 20px;
    }
    
    .login-issues .login-problems-table th,
    .login-issues .login-problems-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    /* Mobile Responsive for Overview Image */
    .login-issues .overview-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .login-issues .overview-image {
        padding: 15px;
        margin: 20px 0;
    }
    
    .login-issues .overview-image svg {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .login-issues .quick-overview {
        padding: 20px 15px;
    }
    
    .login-issues .feature-item {
        padding: 20px 15px;
    }
    
    .login-issues .solution-item {
        padding: 15px;
    }
    
    .login-issues .solution-steps {
        padding: 15px;
    }
    
    .login-issues .solution-steps li {
        padding-left: 40px;
        padding-right: 10px;
    }
    
    .login-issues .login-problems-table {
        font-size: 0.8rem;
    }
    
    .login-issues .login-problems-table th,
    .login-issues .login-problems-table td {
        padding: 8px 6px;
    }
    
    /* Small Mobile Responsive for Overview Image */
    .login-issues .overview-section {
        padding: 15px 10px;
        margin: 15px 0;
    }
    
    .login-issues .overview-image {
        padding: 10px;
        margin: 15px 0;
    }
    
    .login-issues .overview-image svg {
        height: 220px;
    }
}