/* Privacy Policy and Terms of Use Pages Styles */

.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/legal-banner.jpg');
    background-size: cover;
    background-position: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
    text-align: right;
}

.intro-text {
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.table-of-contents {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
}

.table-of-contents h2 {
    color: #2a7a9e;
    margin-bottom: 15px;
    font-size: 20px;
}

.table-of-contents ul {
    padding-left: 20px;
}

.table-of-contents ul li {
    margin-bottom: 8px;
}

.table-of-contents ul li a {
    color: #2a7a9e;
    text-decoration: none;
    transition: color 0.3s;
}

.table-of-contents ul li a:hover {
    color: #1c5c7a;
    text-decoration: underline;
}

.policy-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px; /* For smooth scrolling */
}

.policy-section h2 {
    color: #2a7a9e;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaf4f9;
}

.policy-section h3 {
    color: #333;
    font-size: 20px;
    margin: 25px 0 15px;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: #444;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.policy-section a {
    color: #2a7a9e;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

.contact-details {
    background-color: #eaf4f9;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 0;
}

.contact-details a {
    color: #2a7a9e;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.definition {
    font-style: italic;
    margin-left: 20px;
    color: #555;
}

.special-notice {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.special-notice p {
    margin-bottom: 10px;
}

.special-notice p:last-child {
    margin-bottom: 0;
}

/* Term-specific styles */
.term-section {
    margin-bottom: 30px;
}

.term-section h4 {
    color: #444;
    font-size: 18px;
    margin: 20px 0 10px;
}

.numbered-list {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.numbered-list li {
    counter-increment: item;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.numbered-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #2a7a9e;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 15px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .policy-section p, .policy-section ul li, .policy-section ol li {
        font-size: 15px;
    }
}