/* Copy of privacyPolicy.css for Terms and Conditions page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
}


.image-section {
    position: relative;
    height: 40vh;
    background: url('https://img.freepik.com/free-photo/abstract-luxury-gradient-blue-background-smooth-dark-blue-with-black-vignette-studio-banner_1258-54587.jpg?ga=GA1.1.1083888277.1742803658&semt=ais_hybrid&w=740') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    border-bottom: 1px solid #e0e0e0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
section.about {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 30px 10px 10px 10px;
}
section.about h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
section.about p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.content-section {
    padding: 40px 20px;
    text-align: left;
    color: #333;
    background: #fff;
    margin: 0 auto 30px auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-top: 30px;
}
.about-h2 {
    font-size: 2rem;
    margin-top: 30px;
    color: #057510;
}
.about-p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}
@media (max-width: 768px) {
    .image-section {
        height: 25vh;
    }
    .content-section {
        padding: 20px 5px;
        max-width: 98%;
    }
    section.about h1 {
        font-size: 1.5rem;
    }
    .about-h2 {
        font-size: 1.2rem;
    }
    .about-p {
        font-size: 1rem;
    }
}
/* Ensure contact section text is visible on terms and conditions page */
.contact-us .fade-in-up,
.contact-us .fade-in-left,
.contact-us .fade-in-right {
    opacity: 1 !important;
    transform: none !important; /* Remove any initial transform that might hide it */
}

