/* Privacy Policy Page Styles */

/* Hero subtitle for policy pages */
.blog-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.privacy-content {
    padding: 60px 0 100px;
    background-color: #f8f9fa;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-article {
    color: #333;
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #2d6a4f;
    font-weight: 600;
}

.privacy-section h3 {
    font-size: 22px;
    color: #2d6a4f;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-section li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.privacy-section li strong {
    color: #2d6a4f;
    font-weight: 600;
}

.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-list a {
    color: #2d6a4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #1a4d3a;
    text-decoration: underline;
}

/* Links within content */
.privacy-section a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.privacy-section a:hover {
    color: #1a4d3a;
    border-bottom-color: #1a4d3a;
}

/* External link indicator */
.privacy-section a[target="_blank"]::after {
    content: " ↗";
    font-size: 12px;
    vertical-align: super;
}

/* Enhanced list styling */
.privacy-section ul:not(.contact-list) {
    background-color: #f8f9fa;
    padding: 20px 20px 20px 45px;
    border-radius: 6px;
    border-left: 4px solid #2d6a4f;
}

.privacy-section ul:not(.contact-list) li {
    margin-bottom: 12px;
    position: relative;
}

.privacy-section ul:not(.contact-list) li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 40px 30px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section h3 {
        font-size: 20px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 40px 0 60px;
    }

    .privacy-wrapper {
        padding: 30px 20px;
        border-radius: 0;
    }

    .privacy-section h2 {
        font-size: 22px;
    }

    .privacy-section h3 {
        font-size: 18px;
    }
}