/* ======================================
   LEGAL PAGES STYLING (Terms & Privacy)
   ====================================== */

/* Page Layout */
.about-area {
    background: #f8f9fa;
}

/* Policy Sections */
.policy-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.policy-section:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Section Headers */
.section-header h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    border-bottom: 2px solid #1FB6A6;
    padding-bottom: 10px;
}

.section-header h3 i {
    font-size: 20px;
}

/* Subsection Titles */
.subsection-title {
    color: #444;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

/* Policy Lists */
.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.policy-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.policy-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: #1FB6A6;
    font-weight: bold;
    font-size: 16px;
}

/* Paragraphs */
.policy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Links */
.policy-section a {
    color: #1FB6A6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.policy-section a:hover {
    color: #0d9488;
    text-decoration: underline;
}

/* Note Text (Privacy Page) */
.note-text {
    background: #f8f9fa;
    padding: 12px 15px;
    border-left: 3px solid #1FB6A6;
    color: #666;
    font-size: 14px;
    margin-top: 15px;
    border-radius: 4px;
}

/* Important Note (Terms Page) */
.important-note {
    background: #fff3cd;
    padding: 12px 15px;
    border-left: 3px solid #ffc107;
    color: #856404;
    font-size: 14px;
    margin-top: 15px;
    border-radius: 4px;
}

/* Acknowledgment Box */
.acknowledgment-box {
    background: #f0fdf4;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1FB6A6;
    color: #555;
}

.acknowledgment-box p:last-child {
    margin-bottom: 0;
}

/* Section Title (Header) */
.section-title h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
}

.section-title p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .policy-section {
        padding: 25px 20px;
    }
    
    .section-header h3 {
        font-size: 20px;
    }
    
    .subsection-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .policy-section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .section-header h3 {
        font-size: 18px;
    }
    
    .subsection-title {
        font-size: 15px;
        margin-top: 15px;
    }
    
    .policy-list li {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

/* Print Styles */
@media print {
    .policy-section {
        box-shadow: none;
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .section-header h3 {
        page-break-after: avoid;
    }
    
    .c-btn {
        display: none;
    }
}
