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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    position: relative;
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border-color: #28a745;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

/* Breadcrumb */
.breadcrumb {
    background: #e9ecef;
    padding: 1rem 0;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #007bff;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--cornflower-blue) 100%);
    color: var(--text-light);
    padding: var(--spacing-xxl) 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    min-height: 500px;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

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

section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* About Platform Section */
.about-platform {
    background: white;
}

.about-platform p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Features Section */
.features {
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Registration Process Section */
.registration-process {
    background: white;
}

.registration-process p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Register Section */
.register-section {
    background: #f5f5f0;
    padding: 5rem 0;
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.register-content h2 {
    color: #333;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.register-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.register-content h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.step-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.3s ease;
}

.step-item:hover {
    border-color: #20c997;
}

.step-icon {
    flex-shrink: 0;
}

.icon-circle {
    background: #20c997;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.step-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.step-content strong {
    color: #333;
    font-weight: 700;
}

.register-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

.register-note a {
    color: #20c997;
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover {
    text-decoration: underline;
}

/* Register Visual */
.register-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    width: 100%;
}

.register-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.register-img:hover {
    transform: scale(1.02);
}

/* Login Section */
.login-section {
    background: white;
    padding: 5rem 0;
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.login-content h2 {
    color: #333;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.login-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.login-content h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 3rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: "•";
    color: #20c997;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.login-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

.login-note a {
    color: #20c997;
    text-decoration: none;
    font-weight: 600;
}

.login-note a:hover {
    text-decoration: underline;
}

/* Login Visual */
.login-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-image {
    max-width: 300px;
    width: 100%;
}

.login-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.login-img:hover {
    transform: scale(1.02);
}

/* Advantages & Security Section */
.advantages-security {
    background: #f8f9fa;
}

.advantages-security p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* FAQ Section */
.faq {
    background: white;
}

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

.faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    background: #20c997;
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #1aa179;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.faq-item a {
    color: #20c997;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

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

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #20c997;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #20c997;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 1000;
}

.nav-menu.mobile-active li {
    margin: 0.5rem 0;
}

.nav-menu.mobile-active a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu.mobile-active a:hover {
    background-color: #f8f9fa;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 200px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
        max-width: 250px;
    }
    
    .auth-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        max-width: 100px;
    }
    
    .hero-buttons {
        gap: 1.25rem;
    }
    
    .hero-buttons .btn {
        max-width: 300px;
    }
    
    .cta-buttons .btn {
        max-width: 300px;
    }
    
    .footer-buttons .btn {
        max-width: 140px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Mobile Hero Section Optimization */
@media (max-width: 600px) {
    .hero-buttons {
        gap: 0.8rem;
        margin-top: 1.25rem;
    }
    
    .hero-buttons .btn {
        max-width: 240px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn-large {
        max-width: 240px;
        padding: 9px 18px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .register-content h2,
    .login-content h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        align-self: center;
    }
    
    .register-images {
        max-width: 250px;
    }
    
    .login-image {
        max-width: 250px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .register-section,
    .login-section {
        padding: 3rem 0;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .register-images {
        max-width: 200px;
    }
    
    .login-image {
        max-width: 200px;
    }
    
    .btn {
        max-width: 250px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .auth-buttons {
        gap: 0.5rem;
    }
    
    .auth-buttons .btn {
        max-width: 80px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        max-width: 220px;
        padding: 7px 14px;
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn-large {
        max-width: 220px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        gap: 0.5rem;
    }
    
    .cta-buttons .btn {
        max-width: 280px;
    }
    
    .footer-buttons .btn {
        max-width: 120px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Static step items - no animations */

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

/* Focus styles for accessibility */
.btn:focus,
input:focus,
button:focus {
    outline: 2px solid #20c997;
    outline-offset: 2px;
}

/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* About Page Styles */
.about-content {
    background: white;
    padding: 5rem 0;
}

.about-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.about-intro h2 {
    color: #333;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    border-radius: 2px;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.about-values {
    margin-bottom: 4rem;
}

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

.about-values h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    border-radius: 2px;
}

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

.value-item {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #20c997, #17a2b8);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.value-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.about-achievements,
.about-team,
.about-future {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.about-achievements h2,
.about-team h2,
.about-future h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-achievements h2::after,
.about-team h2::after,
.about-future h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    border-radius: 2px;
}

.about-achievements ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.about-achievements li {
    padding: 1rem 0;
    color: #666;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.about-achievements li:last-child {
    border-bottom: none;
}

.about-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    color: #20c997;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-team p,
.about-future p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Terms & Conditions Page Styles */
.terms-content {
    background: white;
    padding: 5rem 0;
}

.terms-intro {
    margin-bottom: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.terms-intro h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.terms-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 2px;
}

.terms-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #dc3545;
    transition: all 0.3s ease;
}

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

.terms-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.terms-section h3 {
    color: #555;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.terms-section li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.terms-section li:last-child {
    border-bottom: none;
}

.terms-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-section a {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #c82333;
    text-decoration: underline;
}

/* Disclaimer Page Styles */
.disclaimer-content {
    background: white;
    padding: 5rem 0;
}

.disclaimer-intro {
    margin-bottom: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 15px;
    border: 2px solid #ffc107;
}

.disclaimer-intro h2 {
    color: #856404;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.disclaimer-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border-radius: 2px;
}

.disclaimer-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #856404;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
    transition: all 0.3s ease;
}

.disclaimer-section:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.disclaimer-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.disclaimer-section h3 {
    color: #555;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

.disclaimer-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.disclaimer-section li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.disclaimer-section li:last-child {
    border-bottom: none;
}

.disclaimer-section li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #ffc107;
    font-weight: bold;
    font-size: 1.2rem;
}

.disclaimer-section a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.disclaimer-section a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

/* Support Page Styles */
.support-content {
    background: white;
    padding: 5rem 0;
}

.support-intro {
    margin-bottom: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-radius: 15px;
}

.support-intro h2 {
    color: #0c5460;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.support-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 2px;
}

.support-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #0c5460;
    max-width: 900px;
    margin: 0 auto;
}

.support-methods {
    margin-bottom: 4rem;
}

.support-methods h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.support-methods h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 2px;
}

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

.support-method {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.support-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.support-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #17a2b8;
}

.support-method h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-method p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
        font-size: 1rem;
    }
    
.support-hours {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.support-hours h2 {
    text-align: center;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.support-hours h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 2px;
}

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

.hours-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
        text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-3px);
}

.hours-item h3 {
    color: #17a2b8;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hours-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.common-issues {
    margin-bottom: 4rem;
}

.common-issues h2 {
    text-align: center;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.common-issues h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 2px;
}

.support-tips {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.support-tips h2 {
    text-align: center;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.support-tips h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 2px;
}

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

.tip-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
}

.tip-item h3 {
    color: #17a2b8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.support-contact {
    padding: 3rem;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    border-radius: 15px;
    color: white;
}

.support-contact h2 {
    text-align: center;
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.support-contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: white;
    border-radius: 2px;
}

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

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.2);
}

.contact-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin: 0;
}

/* Privacy Policy Page Styles */
.privacy-content {
    background: white;
    padding: 5rem 0;
}

.privacy-intro {
    margin-bottom: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-radius: 15px;
    border: 2px solid #28a745;
}

.privacy-intro h2 {
    color: #155724;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.privacy-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 2px;
}

.privacy-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #155724;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #28a745;
    transition: all 0.3s ease;
}

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

.privacy-section h2 {
    color: #333;
        font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-section h3 {
    color: #555;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section li:last-child {
    border-bottom: none;
}

.privacy-section li::before {
    content: '🔒';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #20c997;
    text-decoration: underline;
}

/* Enhanced FAQ Styles for Support Page */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-item h3 {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #138496, #117a8b);
}

.faq-item p {
    padding: 2rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
        font-size: 1rem;
    display: none;
}

.faq-item.active p {
    display: block;
    animation: fadeInDown 0.3s ease-out;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .about-intro h2,
    .terms-intro h2,
    .disclaimer-intro h2,
    .support-intro h2,
    .privacy-intro h2 {
        font-size: 2rem;
    }
    
    .values-grid,
    .support-grid,
    .tips-grid,
    .contact-info,
    .hours-info {
        grid-template-columns: 1fr;
    }
    
    .terms-section,
    .disclaimer-section,
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .support-method,
    .value-item,
    .tip-item,
    .contact-item,
    .hours-item {
        padding: 1.5rem;
    }
    
    .about-achievements,
    .about-team,
    .about-future,
    .support-hours,
    .support-tips {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .terms-content,
    .disclaimer-content,
    .support-content,
    .privacy-content {
        padding: 3rem 0;
    }
    
    .about-intro,
    .terms-intro,
    .disclaimer-intro,
    .support-intro,
    .privacy-intro {
        padding: 2rem;
    }
}

/* Additional Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered animations for grid items */
.values-grid .value-item:nth-child(1) { animation: slideInLeft 0.6s ease-out 0.1s both; }
.values-grid .value-item:nth-child(2) { animation: slideInLeft 0.6s ease-out 0.2s both; }
.values-grid .value-item:nth-child(3) { animation: slideInLeft 0.6s ease-out 0.3s both; }
.values-grid .value-item:nth-child(4) { animation: slideInLeft 0.6s ease-out 0.4s both; }

.support-grid .support-method:nth-child(1) { animation: slideInLeft 0.6s ease-out 0.1s both; }
.support-grid .support-method:nth-child(2) { animation: slideInLeft 0.6s ease-out 0.2s both; }
.support-grid .support-method:nth-child(3) { animation: slideInLeft 0.6s ease-out 0.3s both; }
.support-grid .support-method:nth-child(4) { animation: slideInLeft 0.6s ease-out 0.4s both; }

/* Print styles */
@media print {
    .nav-menu,
    .auth-buttons,
    .cta,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}