/* Privacy Policy Page Specific Styles */
.privacy-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: #37584E;
    color: white;
}

.privacy-header {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.7;
    font-style: italic;
}

.privacy-content {
    padding: 6rem 0;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.subsection-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #34495e;
    margin: 2rem 0 1rem 0;
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.policy-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.policy-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 1rem;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0.75rem;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-list strong {
    color: #2c3e50;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid #4a90e2;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #555;
}

.contact-info strong {
    color: #2c3e50;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .privacy-hero {
        padding: 4rem 0 3rem;
    }

    .privacy-content {
        padding: 4rem 0;
    }

    .content-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }

    .policy-section {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .subsection-title {
        font-size: 1.2rem;
    }

    .policy-list li {
        padding-left: 1.5rem;
    }

    .policy-list li::before {
        left: 0.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .policy-list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 1rem;
    }
}