/* Terms & Conditions and Privacy Policy Styling */
.terms-conditions-page,
.privacy-policy-page {
    background-color: #f8f9fa;
}

.terms-content-area,
.policy-content-area {
    background: white;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.section-header h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-header p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.content-wrapper {
    line-height: 1.8;
    color: #495057;
    font-size: 16px;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: #2c3e50;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid #D2691E;
    padding-bottom: 15px;
}

.content-wrapper h2 {
    font-size: 2rem;
    border-bottom: 2px solid #D2691E;
    padding-bottom: 10px;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    color: #D2691E;
    margin-top: 40px;
}

.content-wrapper h4 {
    font-size: 1.25rem;
}

.content-wrapper p {
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.7;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-wrapper strong {
    color: #2c3e50;
    font-weight: 600;
}

.content-wrapper blockquote {
    background: #f8f9fa;
    border-left: 4px solid #D2691E;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.content-wrapper a {
    color: #D2691E;
    text-decoration: none;
}

.content-wrapper a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.no-content {
    padding: 80px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
    text-align: center;
}

.no-content h4 {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-content p {
    color: #868e96;
    font-size: 16px;
}

.last-updated {
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
}

.last-updated p {
    margin: 0;
    font-size: 14px;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-top: 40px;
}

.contact-info h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-info>p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-details .contact-item {
    padding: 25px 20px;
    text-align: center;
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-details .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-details .contact-item i {
    color: #D2691E;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.contact-details .contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: block;
}

.contact-details .contact-item a:hover {
    color: #D2691E;
}

.contact-details .contact-item span {
    color: #6c757d;
    font-weight: 600;
    font-size: 16px;
}

/* Breadcrumb styling to match existing design */
.breadcrumb-section {
    padding: 100px 0;
    position: relative;
}

.banner-content h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-list li {
    color: white;
    font-size: 16px;
}

.breadcrumb-list li a {
    color: white;
    text-decoration: none;
}

.breadcrumb-list li a:hover {
    color: #D2691E;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {

    .terms-content-area,
    .policy-content-area {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .content-wrapper h1 {
        font-size: 2rem;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
    }

    .content-wrapper h3 {
        font-size: 1.25rem;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-details .contact-item {
        margin-bottom: 15px;
        padding: 20px 15px;
    }

    .content-wrapper ul,
    .content-wrapper ol {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .contact-info h4 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {

    .breadcrumb-section,
    .contact-info {
        display: none;
    }

    .terms-content-area,
    .policy-content-area {
        box-shadow: none;
        padding: 20px;
        background: white;
    }

    .content-wrapper h1,
    .content-wrapper h2,
    .content-wrapper h3 {
        color: #000;
    }

    .content-wrapper {
        color: #000;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background-color: #D2691E;
    color: white;
}

::-moz-selection {
    background-color: #D2691E;
    color: white;
}