/* Privacy Policy Page Styles */
.atvan-body {
    padding-top: 70px;
}

/* Privacy Policy Hero */
.about-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #0BAA66 0%, #0a9a5c 50%, #065a3d 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-hero-content {
    width: 100%;
    position: relative;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.about-hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.about-hero-curve svg {
    width: calc(100% + 1.3px);
    height: 120px;
    display: block;
}

/* Privacy Policy Content Section */
.about-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.privacy-content {
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.8;
    padding: 0 20px;
}

/* Section Headers with Icons */
.privacy-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 60px 0 25px 0;
    padding: 20px 0;
    border-bottom: 3px solid var(--color-emerald);
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-content h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.privacy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 4px solid var(--color-emerald);
    background: rgba(11, 170, 102, 0.05);
    padding: 15px 20px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.privacy-content p {
    margin-bottom: 25px;
    color: var(--color-text);
    font-size: 1.05rem;
    text-align: justify;
    hyphens: auto;
    word-wrap: break-word;
}

.privacy-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.privacy-content li {
    margin-bottom: 15px;
    color: var(--color-text);
    position: relative;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-emerald);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.privacy-content li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-content li::before {
    content: '✓';
    color: var(--color-emerald);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

.privacy-content strong {
    font-weight: 700;
    color: var(--color-black);
    background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-content a {
    color: var(--color-emerald);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.privacy-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.privacy-content a:hover::after {
    width: 100%;
}

.privacy-content a:hover {
    color: var(--color-emerald-dark);
}

/* Contact Information Styling */
.privacy-content h2:last-of-type + p + ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.privacy-content h2:last-of-type + p + ul li {
    background: linear-gradient(135deg, rgba(11, 170, 102, 0.1), rgba(212, 167, 87, 0.1));
    border: none;
    border-left: 4px solid var(--color-gold);
    padding: 20px;
    margin: 0;
}

.privacy-content h2:last-of-type + p + ul li::before {
    content: '📧';
    margin-right: 12px;
}

.privacy-content h2:last-of-type + p + ul li:nth-child(2)::before {
    content: '📞';
}

.privacy-content h2:last-of-type + p + ul li:nth-child(3)::before {
    content: '📍';
}

/* Last Updated Styling */
.privacy-content p:last-child {
    text-align: center;
    font-weight: 600;
    color: var(--color-emerald);
    background: rgba(11, 170, 102, 0.05);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-top: 50px;
    border: 2px solid rgba(11, 170, 102, 0.1);
}

/* Content Blocks */
.privacy-content > h2 + p,
.privacy-content > h2 + h3 + p {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .privacy-content {
        max-width: 900px;
    }

    .privacy-content h2 {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .privacy-content h3 {
        font-size: 1.4rem;
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding: 40px 0;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-content-section {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 0 15px;
    }

    .privacy-content h2 {
        font-size: 1.8rem;
        margin: 50px 0 20px 0;
        padding: 15px 0;
    }

    .privacy-content h3 {
        font-size: 1.3rem;
        margin: 35px 0 15px 0;
    }

    .privacy-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .privacy-content li {
        padding: 15px;
        font-size: 0.95rem;
    }

    .privacy-content h2:last-of-type + p + ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }

    .privacy-content h2 {
        font-size: 1.6rem;
        margin: 40px 0 15px 0;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
        padding: 10px 12px;
        margin: 30px 0 12px 0;
    }

    .privacy-content p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .privacy-content li {
        padding: 12px;
        font-size: 0.9rem;
    }

    .privacy-content p:last-child {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .atvan-body {
        padding-top: 0;
    }

    .atvan-nav,
    .atvan-footer {
        display: none;
    }

    .about-hero {
        display: none;
    }

    .privacy-content {
        max-width: none;
        padding: 0;
    }

    .privacy-content h2 {
        page-break-after: avoid;
        border-bottom-color: #000;
    }

    .privacy-content h3 {
        page-break-after: avoid;
    }
}
