/* 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/head1.jpg');
}

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

.hero-bg-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/head3.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;
}

.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;
}

/* Safety Tips Section */
.safety-tips {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.safety-tips::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;
}

.safety-tips h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 600;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    visibility: visible;
}

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

.safety-content > p {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.safety-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.safety-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.safety-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 157, 0.2);
}

.safety-section h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.safety-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 2px;
}

.safety-section ul {
    list-style: none;
    padding: 0;
}

.safety-section li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.7;
}

.safety-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b9d;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.emergency-info {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
}

.emergency-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.emergency-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .safety-tips {
        padding: 80px 0;
    }
    
    .safety-tips h2 {
        font-size: 2.5rem;
    }
    
    .safety-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .safety-section {
        padding: 2rem;
    }
    
    .emergency-info {
        padding: 2rem;
    }
}

/* 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: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    border-left: none;
}

.conclusion h2 {
    color: #1a1a1a;
    border-left: 5px solid #1a1a1a;
}

.conclusion p {
    color: #1a1a1a;
    opacity: 1;
    font-weight: 500;
}

.conclusion ul {
    color: #1a1a1a;
}

.conclusion li {
    color: #1a1a1a;
    opacity: 1;
    font-weight: 500;
}

.final-contact {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 2px solid #1a1a1a;
}

.final-contact h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-contact p {
    color: #1a1a1a;
    opacity: 1;
    font-weight: 500;
}

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

.final-contact li {
    color: #1a1a1a;
    opacity: 1;
    font-weight: 600;
}

/* 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;
    }
}

/* Blog Pages Styles */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.category-tag {
    background: rgba(255,255,255,0.2);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
}

.category-tag:hover,
.category-tag.active {
    background: white;
    color: #667eea;
    border-color: white;
}

.featured-article {
    padding: 80px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-text h2 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-text h2 a:hover {
    color: #ff6b9d;
}

.featured-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.read-more-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.blog-articles {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.article-content {
    padding: 1.5rem;
}

.article-category {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-content h3 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #ff6b9d;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1.1rem;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-text h2 {
        font-size: 1.8rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .featured-article,
    .blog-articles,
    .newsletter-section {
        padding: 60px 0;
    }
    
    .blog-categories {
        gap: 0.5rem;
    }
    
    .category-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

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

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

.elite-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;
}

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

.elite-hero-bg-slide:nth-child(1) {
    background-image: linear-gradient(rgba(26,26,46,0.7), rgba(15,52,96,0.7)), url('images/head1.jpg');
}

.elite-hero-bg-slide:nth-child(2) {
    background-image: linear-gradient(rgba(26,26,46,0.7), rgba(15,52,96,0.7)), url('images/head2.jpg');
}

.elite-hero-bg-slide:nth-child(3) {
    background-image: linear-gradient(rgba(26,26,46,0.7), rgba(15,52,96,0.7)), url('images/head3.jpg');
}

.elite-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;
}

.elite-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.elite-hero h1 {
    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.3);
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.elite-hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.elite-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.elite-hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.elite-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.elite-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;
}

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

/* Responsive adjustments for elite hero */
@media (max-width: 768px) {
    .elite-hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .elite-hero h1 {
        font-size: 2.5rem;
    }
    
    .elite-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .elite-hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
 
 .elite-cta-buttons .cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.elite-cta-buttons .cta-btn.primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.elite-cta-buttons .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffd700;
}

.elite-cta-buttons .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Elite Benefits */
.elite-benefits {
    padding: 100px 0;
    background: #f8f9fa;
}

.elite-benefits h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Elite Tiers */
.elite-tiers {
    padding: 100px 0;
    background: white;
}

.elite-tiers h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.tier-card.platinum::before {
    background: linear-gradient(45deg, #e5e5e5, #ffffff);
}

.tier-card.diamond::before {
    background: linear-gradient(45deg, #b9f2ff, #00d4ff);
}

.tier-card.gold::before {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tier-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 2rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tier-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* Elite Success Stories */
.elite-success {
    padding: 100px 0;
    background: #f8f9fa;
}

.elite-success h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #000000 !important;
}

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

.success-story {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-avatar {
    flex-shrink: 0;
}

.story-content {
    flex: 1;
}

.story-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #000000;
}

.story-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-author strong {
    font-weight: 600;
    color: #000000;
}

.story-author span {
    color: #666;
    font-size: 0.9rem;
}

.success-story blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #000000;
}

.success-story .author {
    font-weight: 600;
    color: #000000;
}

.success-story .title {
    color: #666;
    font-size: 0.9rem;
}

/* Elite CTA Section */
.elite-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.elite-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.elite-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.elite-cta .elite-join-btn,
.elite-cta .cta-btn {
    padding: 18px 50px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.elite-cta .elite-join-btn:hover,
.elite-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* Responsive Design for Elite Pages */
@media (max-width: 768px) {
    .elite-hero h1 {
        font-size: 2.5rem;
    }
    
    .elite-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .elite-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid,
    .tiers-grid,
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .success-story {
        flex-direction: column;
        text-align: center;
    }
    
    .elite-benefits h2,
    .elite-tiers h2,
    .elite-success h2,
    .elite-cta h2 {
        font-size: 2rem;
    }
    
    .tier-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .elite-hero {
        padding: 100px 0 60px;
    }
    
    .elite-hero h1 {
        font-size: 2rem;
    }
    
    .benefit-card,
    .tier-card,
    .success-story {
        padding: 1.5rem;
    }
    
    .success-story {
        gap: 1rem;
    }
    
    .elite-benefits,
    .elite-tiers,
    .elite-success,
    .elite-cta {
        padding: 60px 0;
    }
}

/* Sugar Elite Page Specific Styles */
.sugar-elite-page .safety-tips {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

.sugar-elite-page .safety-tips h2 {
    display: block !important;
    visibility: visible !important;
    color: #1a202c !important;
    opacity: 1 !important;
}

.sugar-elite-page .safety-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sugar-elite-page .safety-categories {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sugar-elite-page .safety-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sugar-elite-page .safety-section h3 {
    display: block !important;
    visibility: visible !important;
    color: #2d3748 !important;
}

.sugar-elite-page .safety-section ul {
    display: block !important;
    visibility: visible !important;
}

.sugar-elite-page .safety-section li {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sugar-elite-page .emergency-info {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Elite Success Stories Optimization */
.sugar-elite-page .elite-success h2 {
    color: #000000 !important;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.sugar-elite-page .success-story {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sugar-elite-page .success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Elite CTA Button Optimization */
.sugar-elite-page .elite-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    text-align: center;
}

.sugar-elite-page .elite-cta h2 {
    color: white !important;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sugar-elite-page .elite-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sugar-elite-page .elite-join-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white !important;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.sugar-elite-page .elite-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8a, #b83d5a);
}

/* Article Pages Styles */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 140px 0 60px; /* 增加顶部padding以避免被固定header遮挡 */
    text-align: center;
}

.article-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.article-breadcrumb a:hover {
    opacity: 0.7;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -1rem;
    opacity: 0.6;
}

.article-content {
    background: white;
    padding: 80px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-intro {
    margin-bottom: 3rem;
}

.article-intro .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
    margin-bottom: 2rem;
}

.article-image {
    margin: 3rem 0;
    text-align: center;
}

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

.article-body h2 {
    font-size: 2rem;
    color: #2d3748;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
}

.article-body h3 {
    font-size: 1.5rem;
    color: #4a5568;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.8rem;
}

.article-body blockquote {
    background: #f7fafc;
    border-left: 4px solid #667eea;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #2d3748;
    border-radius: 0 8px 8px 0;
}

.article-cta {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

/* Sugar Elite Sections Optimization */
/* What is Sugar Elite Section */
.sugar-elite-page .what-is-elite {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
}

.sugar-elite-page .what-is-elite::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="%23667eea" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.sugar-elite-page .what-is-elite h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.sugar-elite-page .elite-definition {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sugar-elite-page .elite-definition > p {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sugar-elite-page .elite-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.sugar-elite-page .elite-type {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.sugar-elite-page .elite-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.sugar-elite-page .elite-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.sugar-elite-page .elite-type h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sugar-elite-page .elite-type p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    text-align: justify;
}

/* Elite VS Normal Section */
.sugar-elite-page .elite-vs-normal {
    background: white;
    padding: 100px 0;
    position: relative;
}

.sugar-elite-page .elite-vs-normal h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

.sugar-elite-page .comparison-content > p {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sugar-elite-page .comparison-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.sugar-elite-page .comparison-item {
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sugar-elite-page .comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sugar-elite-page .comparison-item h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
}

.sugar-elite-page .comparison-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sugar-elite-page .elite-side,
.sugar-elite-page .normal-side {
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.sugar-elite-page .elite-side {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sugar-elite-page .normal-side {
    background: #e2e8f0;
    color: #4a5568;
}

.sugar-elite-page .elite-side h4,
.sugar-elite-page .normal-side h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.sugar-elite-page .elite-side p,
.sugar-elite-page .normal-side p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.sugar-elite-page .why-choose-elite {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    margin-top: 3rem;
}

.sugar-elite-page .why-choose-elite h3 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.sugar-elite-page .why-choose-elite p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* How to Find Elite Section */
.sugar-elite-page .how-to-find-elite {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
}

.sugar-elite-page .how-to-find-elite h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sugar-elite-page .find-elite-content > p {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sugar-elite-page .find-methods {
    display: grid;
    gap: 3rem;
}

.sugar-elite-page .method-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #667eea, #764ba2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.sugar-elite-page .method-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.sugar-elite-page .method-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sugar-elite-page .method-section > p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: center;
}

.sugar-elite-page .method-section ul {
    list-style: none;
    padding: 0;
}

.sugar-elite-page .method-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

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

.sugar-elite-page .method-section li strong {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive Design for Elite Sections */
@media (max-width: 768px) {
    .sugar-elite-page .what-is-elite h2,
    .sugar-elite-page .elite-vs-normal h2,
    .sugar-elite-page .how-to-find-elite h2 {
        font-size: 2.5rem;
    }
    
    .sugar-elite-page .elite-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sugar-elite-page .comparison-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sugar-elite-page .elite-type,
    .sugar-elite-page .comparison-item,
    .sugar-elite-page .method-section {
        padding: 2rem 1.5rem;
    }
    
    .sugar-elite-page .what-is-elite,
    .sugar-elite-page .elite-vs-normal,
    .sugar-elite-page .how-to-find-elite {
        padding: 60px 0;
    }
}

.article-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-cta .cta-btn {
    background: white;
    color: #c44569;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.article-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.article-sidebar {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.related-articles h3,
.article-share h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 1rem;
}

.related-articles a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Article Responsive Design */
@media (max-width: 768px) {
    .article-header {
        padding: 120px 0 40px;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .article-body {
        padding: 0 15px;
    }
    
    .article-intro .lead {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.6rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 100px 0 30px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-meta span::after {
        display: none;
    }
    
    .article-content {
        padding: 60px 0;
    }
    
    .article-body {
        padding: 0 10px;
    }
    
    .article-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .share-buttons {
        justify-content: center;
    }
}