/* Import Google Fonts - Poppins for headings, Open Sans for body text */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Poppins:wght@400;600;700;800&display=swap'); /* Added 800 weight for Poppins */

/* --- Base Styles --- */
:root {
    /* Primary Brand Colors - A richer, deeper blue palette */
    --primary-blue: #007bff;        /* Standard Blue for links, small accents */
    --primary-dark-blue: #0A3C6B;   /* Deep, professional blue */
    --primary-light-blue: #3E8EFF;  /* Brighter blue for highlights */
    --secondary-teal: #00BFFF;      /* Bright, inviting teal, used in gradients */
    --secondary-teal-dark: #0099CC; /* Darker teal for hover */

    /* Grayscale & Backgrounds */
    --text-dark: #212529;           /* Deep almost-black for main text */
    --text-medium: #495057;         /* Dark grey for secondary text/paragraphs */
    --text-light: #f8f9fa;          /* Off-white for text on dark backgrounds */
    --bg-lightest: #f8fafd;         /* Very light, cool white background */
    --bg-light: #ffffff;           /* Pure white for elements */
    --bg-dark: #1a202c;             /* Very dark blue-grey for header/footer */

    /* Borders & Shadows */
    --border-color-light: #e9ecef;  /* Soft grey border */
    --shadow-subtle: 0 5px 15px rgba(0, 0, 0, 0.08); /* Lighter, diffused shadow */
    --shadow-medium: 0 12px 25px rgba(0, 0, 0, 0.15); /* More pronounced shadow */

    /* Accent & Success */
    --accent-green: #28a745;        /* Standard green for success/CTA */
    --accent-green-dark: #218838;
    --accent-yellow: #ffc107;       /* A warm yellow for occasional highlights */

    /* Hero Section Specific Colors (can be overridden or derived) */
    --hero-overlay-start: rgba(10, 60, 107, 0.85); /* Deep blue with opacity */
    --hero-overlay-end: rgba(0, 191, 255, 0.65);  /* Lighter teal with opacity */

    /* Breakpoints */
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
}

* {
*     margin: 0;
*         padding: 0;
*             box-sizing: border-box;
*             }
*
*             body {
*                 font-family: 'Open Sans', sans-serif;
*                     line-height: 1.7; /* Slightly increased line-height for readability */
    color: var(--text-dark);
    background-color: var(--bg-lightest);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px; /* Slightly more padding */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700; /* Bolder headings */
}

h1 { font-size: 3.2rem; line-height: 1.2; } /* Slightly larger base H1 */
h2 { font-size: 2.6rem; margin-bottom: 2.5rem; text-align: center; color: var(--primary-dark-blue); } /* Main section headings */
h3 { font-size: 2rem; } /* Slightly larger base H3 */

p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px; /* More generous padding */
    border-radius: 50px; /* Pill shape for modern look */
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease; /* Smooth transitions for all properties */
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-subtle);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal)); /* Gradient for primary */
    color: var(--text-light);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-dark-blue), var(--secondary-teal-dark));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3); /* Enhanced shadow */
}

.btn-secondary {
    background-color: var(--text-medium);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #343a40;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(73, 80, 87, 0.2);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
}

/* Sections */
section {
    padding: 90px 0; /* More vertical padding */
    background-color: var(--bg-light);
    margin-bottom: 30px; /* Space between sections */
    box-shadow: var(--shadow-subtle);
    border-radius: 15px; /* More rounded corners */
    overflow: hidden; /* Important for hero section bg */
}

section:first-of-type {
    margin-top: 0;
    border-radius: 0 0 20px 20px; /* Round bottom only for first section */
    box-shadow: none; /* Hero section doesn't need its own shadow */
}


/* --- Header --- */
.main-header {
    background-color: var(--bg-dark);
    padding: 20px 0; /* More padding */
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo img {
    height: 50px; /* Slightly larger logo */
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 35px; /* More spacing */
}

.main-nav ul li a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Thicker underline */
    bottom: -5px; /* Below the text */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-teal); /* Use secondary teal for underline */
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.main-nav ul li a:hover {
    color: var(--secondary-teal);
}

.main-nav ul li a:hover::after {
    width: 100%;
}


/* --- Hero Section - ADVANCED THEME --- */
.hero-section {
    /* Adjusted padding to make it shorter */
    padding: 120px 20px; /* Decreased from 160px 20px */
    
    /* Adjusted minimum height to make it shorter */
    min-height: 450px; /* Decreased from 600px */

    /* The rest of the hero-section properties remain the same */
    background: 
        linear-gradient(135deg, var(--hero-overlay-start), var(--hero-overlay-end)),
        url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    border-radius: 0 0 25px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Subtle radial gradient for depth, or a pattern */
    background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
    z-index: 1; /* Below content, above main background */
    pointer-events: none; /* Allows clicks to pass through */
}

.hero-section .container {
    position: relative; /* Ensure content is above ::before pseudo-element */
    z-index: 2;
}

.hero-section h1 {
    font-size: 4.8rem; /* Even larger, more impactful heading */
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 800; /* Extra bold */
    text-shadow: 3px 4px 8px rgba(0,0,0,0.7); /* Stronger, diffused shadow */
    letter-spacing: -1px; /* Tighter letter spacing for larger text */
}

.hero-section p {
    font-size: 1.55rem; /* Larger paragraph */
    margin-bottom: 50px;
    max-width: 850px; /* Wider paragraph */
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.98); /* Near pure white for readability */
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Subtle shadow for paragraph */
}

.hero-section .btn {
    padding: 20px 50px; /* Even more generous button padding */
    font-size: 1.4rem; /* Larger button text */
    background: linear-gradient(to right, var(--accent-green), var(--primary-light-blue)); /* New gradient for hero CTA */
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4); /* Stronger shadow */
    border: 2px solid rgba(255,255,255,0.3); /* Subtle white border */
    font-weight: 700;
}

.hero-section .btn:hover {
    background: linear-gradient(to right, var(--accent-green-dark), var(--primary-blue)); /* Darker hover gradient */
    transform: translateY(-6px); /* More pronounced lift on hover */
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.6); /* Even stronger hover shadow */
    border-color: rgba(255,255,255,0.6); /* Border brightens */
}


/* --- Loan Application Form Section --- */
.loan-application-section {
    background-color: var(--bg-light);
    padding: 70px 0;
}

.loan-application-section h2 {
    color: var(--primary-dark-blue); /* Updated heading color */
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.loan-application-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal));
    margin: 15px auto 0;
    border-radius: 2px;
}

.loan-form-grid {
    display: grid;
    /* Use auto-fit for flexible columns, ensuring at least 300px wide */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Increased gap */
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px; /* More padding */
    background-color: var(--bg-light);
    border-radius: 18px; /* More rounded */
    box-shadow: var(--shadow-medium);
    /* NEW: Explicitly define how implicitly created rows behave */
    grid-auto-rows: minmax(min-content, max-content);
}

.loan-form-grid h3 {
    grid-column: 1 / -1; /* Ensure heading always spans all columns */
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color-light); /* Thicker border */
    font-size: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    /* NEW: Add min-height to form groups to ensure consistent vertical spacing */
    min-height: 90px; /* Adjust as needed for labels+inputs */
}

.form-group.full-width {
    grid-column: 1 / -1; /* This ensures it always spans the full width of the grid */
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"], /* Kept if you reintroduce it */
.form-group input[type="number"],
.form-group select,
.form-group textarea { /* Kept if you reintroduce it */
    //width: 100%;
    padding: 14px 18px; /* More padding in inputs */
    border: 1px solid var(--border-color-light);
    border-radius: 10px; /* Slightly more rounded inputs */
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fcfdfe; /* Very light subtle background */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 107, 255, 0.2); /* Stronger focus ring */
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* Kept if you reintroduce them
 * .radio-group {
 *     display: flex;
 *         gap: 25px;
 *             margin-top: 8px;
 *             }
 *
 *             .radio-group input[type="radio"] {
 *                 margin-right: 8px;
 *                     transform: scale(1.2);
 *                         accent-color: var(--primary-blue);
 *                         }
 *                         */

/* Checkbox specific styling */
.notification-consent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.notification-consent input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
    accent-color: var(--accent-green); /* Color the checkbox itself */
}

.notification-consent label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.loan-form-grid .btn-submit {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding: 18px 35px;
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    background: linear-gradient(to right, var(--accent-green), #4CAF50);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

.loan-form-grid .btn-submit:hover {
    background: linear-gradient(to right, var(--accent-green-dark), #45a049);
    transform: translateY(-5px); /* More pronounced lift on hover */
    box-shadow: 0 12px 30px rgba(46, 204, 113, 0.5);
}

/* Hidden class for JS controlled elements (now mostly unused in simplified form) */
.hidden {
    display: none;
}


/* --- NBFC Partners Section (Conceptual Slider) --- */
.nbfc-partners-section {
    background-color: #e9f7ff; /* Lighter blue background */
    padding: 70px 0;
    overflow: hidden;
    border-radius: 15px;
}

.nbfc-partners-section h2 {
    color: var(--primary-dark-blue); /* Updated heading color */
    margin-bottom: 40px;
}

.nbfc-logos-slider {
    display: flex;
    align-items: center;
    gap: 60px; /* More space between logos */
    animation: slideLogos 30s linear infinite; /* Slower animation */
    white-space: nowrap;
    padding: 25px 0;
}

.nbfc-logos-slider img {
    height: 70px; /* Slightly larger logos */
    max-width: 200px;
    filter: grayscale(0%); /* More muted look for partners */
    //opacity: 0.6;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.nbfc-logos-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.nbfc-partners-section .slider-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Keyframe animation for sliding effect (adjust transform value based on total width of duplicated logos + gaps) */
@keyframes slideLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-260px * 5)); } /* (logo_width + gap) * num_original_logos. Adjust as needed.*/
}


/* --- Services Section --- */
.services-section {
    background-color: var(--bg-light);
    padding: 70px 0;
}

.services-section h2 {
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px; /* More spacing */
    margin-top: 50px;
}

.service-item {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue); /* Highlight border on hover */
}

/* NEW STYLES FOR BOOTSTRAP ICONS */
.service-item .bi { /* Target Bootstrap Icons directly */
    font-size: 4.5rem; /* Make icons larger */
    color: var(--primary-light-blue); /* Color icons with a primary blue */
    margin-bottom: 25px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-item:hover .bi {
    color: var(--secondary-teal); /* Change color on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
}


.service-item h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.service-item p {
    font-size: 1rem;
    color: var(--text-medium);
    flex-grow: 1; /* Ensures paragraphs take available space */
    margin-bottom: 25px;
}

.service-item .btn {
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal));
    color: var(--text-light);
    width: 80%; /* Button takes more width */
}

.service-item .btn:hover {
    background: linear-gradient(to right, var(--primary-dark-blue), var(--secondary-teal-dark));
}


/* --- FAQ Section --- */
.faq-section {
    background-color: #f9fbfd; /* Slightly different light background */
    padding: 70px 0;
}

.faq-section h2 {
    color: var(--text-dark);
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.accordion-header {
    width: 100%;
    padding: 22px 30px; /* More padding */
    background-color: #f0f8ff; /* Very light blue for headers */
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #e3f2fd;
}

.accordion-header .icon {
    font-size: 1.8rem; /* Larger icon */
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

.accordion-header.active .icon {
    transform: rotate(45deg);
    color: var(--accent-green); /* Green when active */
}

.accordion-content {
    padding: 0 30px; /* Match header padding */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out; /* Slower transition */
    background-color: var(--bg-light);
}

.accordion-content p {
    padding-top: 20px; /* Space from top after opening */
    padding-bottom: 20px;
    color: var(--text-medium);
}

.accordion-content.open {
    max-height: 500px; /* Generous height for open state */
    /* Padding is handled in the p tag */
}


/* --- About Us Section --- */
.about-us-section {
    text-align: center;
    padding: 70px 0;
    background-color: var(--bg-light);
}

.about-us-section h2 {
    color: var(--text-dark);
}

.about-us-section p {
    max-width: 900px;
    margin: 0 auto 35px auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-medium);
}


/* --- Footer --- */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 25px 0;
    margin-top: 30px;
    border-radius: 15px 15px 0 0;
}

.main-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px; /* More spacing */
    margin-bottom: 50px;
}

.footer-brand img {
    height: 60px; /* Larger logo */
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.footer-links h4, .footer-social h4 {
    color: var(--secondary-teal); /* Use secondary teal for footer headings */
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.footer-social a {
    display: inline-block;
    margin-right: 18px; /* More space */
}

.footer-social img {
    width: 35px; /* Larger social icons */
    height: 35px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%); /* Slightly desaturate */
}

.footer-social img:hover {
    transform: scale(1.2);
    filter: grayscale(0%); /* Full color on hover */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Slightly more visible border */
    padding-top: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}


/* --- Responsive Design (Media Queries) --- */
@media (max-width: var(--breakpoint-lg)) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .main-nav ul li { margin-left: 25px; }
    .hero-section h1 { font-size: 4rem; } /* Adjusted for larger screen, but smaller than desktop */
    .hero-section p { font-size: 1.4rem; }
    .loan-form-grid { padding: 30px; }
    .service-item { padding: 30px; }
}

@media (max-width: var(--breakpoint-md)) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }
    .main-header .logo {
        margin-bottom: 20px;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .main-nav ul li {
        margin: 0;
    }

    .hero-section {
        padding: 80px 20px;
        min-height: 380px; /* Adjusted height for smaller screens */
    }
    .hero-section h1 {
        font-size: 2.8rem; /* Further reduced for mobile */
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .hero-section .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    h2 { font-size: 2.2rem; } /* Adjusted for mobile */

    .loan-form-grid {
        grid-template-columns: 1fr; /* Force single column on smaller screens */
        padding: 25px;
    }
    .loan-form-grid h3 {
        text-align: left; /* Align heading left on mobile */
    }
    /* Ensure .full-width elements still span full width on single column */
    .form-group.full-width {
        grid-column: auto; /* auto will make it span the single column */
    }


    .nbfc-logos-slider img {
        height: 60px;
    }
    @keyframes slideLogos {
        100% { transform: translateX(calc(-200px * 5)); } /* Adjust for smaller logos */
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        margin-top: 30px;
    }
    .footer-social a {
        margin: 0 12px;
    }
}

/* --- About Us Page Specific Styles --- */
.about-us-page-section {
    padding: 80px 0;
    background-color: var(--bg-lightest);
}

.about-us-page-section h2 {
    margin-bottom: 60px;
    color: var(--primary-dark-blue);
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.about-content-grid .about-text h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-content-grid .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content-grid .about-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: block; /* Ensures image does not have extra space below */
    margin: 0 auto; /* Center image if it's smaller than max-width */
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 18px;
    box-shadow: var(--shadow-subtle);
}

.mission h3, .values h3 {
    color: var(--primary-dark-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mission p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.values ul li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.values ul li i {
    color: var(--secondary-teal);
    font-size: 1.3rem;
    margin-right: 12px;
    vertical-align: middle;
}

.why-choose-us {
    text-align: center;
    margin-bottom: 70px;
}

.why-choose-us h3 {
    color: var(--primary-dark-blue);
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.choose-us-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.point-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color-light);
}

.point-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light-blue);
}

.point-item i {
    font-size: 3.5rem;
    color: var(--primary-light-blue);
    margin-bottom: 20px;
}

.point-item h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.point-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.call-to-action-about {
    text-align: center;
    padding: 50px;
    background: linear-gradient(to right, var(--primary-light-blue), var(--secondary-teal));
    border-radius: 18px;
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.call-to-action-about p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-light);
}

.call-to-action-about .btn-primary {
    background: var(--bg-light); /* White button on gradient background */
    color: var(--primary-dark-blue);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.call-to-action-about .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}


/* Media Queries for About Us Page */
@media (max-width: 768px) {
    .about-us-page-section h2 {
        margin-bottom: 40px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-content-grid .about-image {
        order: -1; /* Move image to top on mobile */
    }

    .about-content-grid .about-text h3 {
        font-size: 2rem;
    }

    .mission-values-grid {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
        padding: 30px;
    }

    .mission h3, .values h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .why-choose-us h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .choose-us-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .call-to-action-about {
        padding: 40px 20px;
    }

    .call-to-action-about p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
}

/* --- Styles for Generic Static Content Pages (Privacy Policy, T&C) --- */
.static-page-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    min-height: 70vh; /* Ensure it takes up enough vertical space */
    box-shadow: none; /* No shadow needed as it's the main content */
    margin-bottom: 0; /* No margin at the bottom of the main content */
    border-radius: 0; /* No rounded corners for full-width content */
}

.static-page-section h2 {
    color: var(--primary-dark-blue);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.static-page-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal));
    margin: 15px auto 0;
    border-radius: 2px;
}

.static-page-section h3 {
    color: var(--primary-blue);
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.static-page-section p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.static-page-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.static-page-section ul li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.static-page-section .last-updated {
    text-align: center;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 50px;
    font-size: 0.95rem;
}

/* Media query for mobile */
@media (max-width: 768px) {
    .static-page-section {
        padding: 40px 0;
    }

    .static-page-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .static-page-section h3 {
        font-size: 1.6rem;
        margin-top: 30px;
    }

    .static-page-section p, .static-page-section ul li {
        font-size: 0.95rem;
    }

    .static-page-section ul {
        margin-left: 15px;
    }
}
