﻿/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjAuNSIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.1;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacy-hero .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.price-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: #333;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fa8c16;
}

.price-label {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.register-btn {
    background: #fa8c16;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(250, 140, 22, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .register-btn:hover {
        background: #e67d0e;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(250, 140, 22, 0.4);
    }

    .register-btn:active {
        transform: translateY(-1px);
    }

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: #fa8c16;
    }

.feature-icon {
    width: 90px;
    height: 90px;
    background: #fa8c16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
}

    .step-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }

.step-number {
    width: 50px;
    height: 50px;
    background: #fa8c16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fa;
}

.benefit-icon {
    color: #fa8c16;
    font-size: 24px;
    min-width: 30px;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.el-collapse {
    border: none;
    background: transparent;
}

.el-collapse-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.el-collapse-item__header {
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    background: #fff;
    border: none;
    border-radius: 16px;
}

.el-collapse-item__content {
    padding: 0 30px 25px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }

    .cta-section::after {
        content: "";
        position: absolute;
        bottom: -80px;
        right: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .privacy-hero h1 {
        font-size: 2.8rem;
    }

    .privacy-hero .subtitle {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

        .privacy-hero h1 {
            font-size: 2.3rem;
        }

        .privacy-hero .subtitle {
            font-size: 1.1rem;
        }

    .price-card {
        padding: 25px 20px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .register-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 2.3rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .privacy-hero {
        padding: 80px 0 40px;
    }

        .privacy-hero h1 {
            font-size: 2rem;
        }

    .price-amount {
        font-size: 2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}
