/* ===== CSS VARIABLES ===== */
:root {
    --maroon: #a9131e;
    --dark-maroon: #8a0f18;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --dark-gray: #333;
    --medium-gray: #666;
    --border-gray: #e0e0e0;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #b04b34;
    /* Theme Color */
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 18px;
}

.nav-links li a:hover {
    color: #c8f1f3;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/banner.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    margin-top: 80px;
}

.left-space {
    flex: 1;
}

/* ===== FORM STYLES ===== */
.form-section {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center; /* Center align */

}

.donation-form-container {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 14px;
    overflow-y: auto;
}

.hero-form h3 {
    margin-bottom: 20px;
    font-size: 26px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--maroon);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-prev {
    background-color: #6c757d;
    color: var(--white);
}

.btn-prev:hover {
    background-color: #5a6268;
}

.btn-next,
.btn-submit {
    background-color: var(--maroon);
    color: var(--white);
}

.btn-next:hover,
.btn-submit:hover {
    background-color: var(--dark-maroon);
    color:#ffffff;
}

/* ===== FORM TABS & STEPS ===== */
.form-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-gray);
    background: #f8f9fa;
}

.tab {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--medium-gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab.active {
    color: var(--maroon);
    border-bottom: 3px solid var(--maroon);
    background: var(--white);
}

.form-step {
    padding: 25px;
    display: none;
    overflow-y: auto;
    flex: 1;
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 20px;
}

.step-header h2 {
    color: var(--maroon);
    font-size: 1.5em;
    margin-bottom: 8px;
}

.step-header p {
    color: var(--medium-gray);
    font-size: 0.9em;
}

/* ===== DONATION OPTIONS ===== */
.donation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.donation-option {
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    padding: 15px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: var(--white);
}

.donation-option:hover {
    border-color: var(--maroon);
    transform: translateY(-2px);
}

.donation-option.selected {
    border-color: var(--maroon);
    background-color: #fff5f5;
    box-shadow: 0 4px 8px rgba(169, 19, 30, 0.15);
}

.option-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

.option-impact {
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.option-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--maroon);
}

.other-option {
    border-style: dashed;
    border-color: #adb5bd;
    background: #f8f9fa;
}

.other-option:hover,
.other-option.selected {
    border-color: var(--maroon);
    background: #fff9f9;
    border-style: solid;
}

/* ===== CUSTOM AMOUNT INPUT ===== */
.custom-amount-container {
    display: none;
    margin: 20px 0;
    padding: 15px;
    border: 2px dashed var(--border-gray);
    border-radius: 8px;
    background-color: #f8f9fa;
}

.custom-amount-container.active {
    display: block;
}

.custom-amount-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--dark-gray);
    font-size: 0.9em;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
}

.currency-symbol {
    padding: 10px 12px;
    background: #f1f1f1;
    font-weight: bold;
    color: var(--dark-gray);
}

.custom-amount-input input {
    border: none;
    padding: 10px;
    flex: 1;
    font-size: 14px;
}

/* ===== IMPACT DISPLAY ===== */
.impact-display {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--maroon);
    margin-bottom: 5px;
}

.impact-description {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.impact-details {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 5px;
}

/* ===== FORM LAYOUT ===== */
.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--dark-gray);
    font-size: 0.9em;
}

.required::after {
    content: " *";
    color: var(--maroon);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.conditional-field {
    display: none;
}

.conditional-field.active {
    display: block;
}

/* ===== RADIO BUTTON STYLES ===== */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-items: center;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    transition: all 0.3s ease;
    background: var(--white);
}

.radio-option:hover {
    border-color: var(--maroon);
    background: #fff9f9;
}

.radio-option input[type="radio"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.radio-label {
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
}

/* Selected radio option */
.radio-option input[type="radio"]:checked + .radio-label {
    color: var(--maroon);
    font-weight: 600;
}

.radio-option input[type="radio"]:checked {
    accent-color: var(--maroon);
}

/* Mobile styles - Keep in one row */
/* ===== MOBILE VIEW IMPROVED ===== */
@media (max-width: 768px) {
    .radio-group {
        display: flex;
        justify-content: center;
        gap: 0px;
        width: 100%;
    }

    .radio-option {
        flex: 1;
        text-align: center;
        padding: 8px 10px;
        font-size: 0.9em;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .radio-group {
        flex-wrap: wrap; /* allow 2 per row */
        gap: 0px;
    }

    .radio-option {
        flex: 1 1 48%; /* perfect 2-column layout */
        text-align: center;
        padding: 10px 8px;
        font-size: 0.85em;
    }

    .radio-label {
        white-space: nowrap;
    }
}

/* ===== FREQUENCY AND DURATION ===== */
.frequency-duration-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.frequency-selection,
.duration-selection {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.frequency-selection h3,
.duration-selection h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

/* ===== INFO & NOTES ===== */
.info-note {
    background-color: #e8f4fd;
    border-left: 4px solid #b04b34;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 0.85em;
    color: #495057;
}

.pan-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8em;
    color: #856404;
    margin-top: 5px;
    display: none;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section-title {
    color: var(--maroon);
    margin-bottom: 12px;
    font-size: 1.1em;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

/* ===== COUNTRY SELECT ===== */
.country-select-container {
    margin-bottom: 20px;
}

.country-select-container h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

/* ===== CUSTOM DROPDOWN ===== */
.dropdown {
    width: 100%;
    position: relative;
    user-select: none;
}

.dropdown-selected {
    padding: 12px;
    border: 1px solid #B04B34;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
    position: relative;
    font-size: 15px;
}

.dropdown-selected::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #B04B34;
    transition: 0.2s;
}

.dropdown-selected.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #B04B34;
    border-radius: 6px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 99;
}

.option {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 15px;
}

.option:hover {
    background: #f9e5e0;
}

/* ===== DONATE NOW BUTTON STYLES ===== */
.donate-now-btn {
    background-color: var(--maroon);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

/* Desktop - Vertical right side button */
.desktop-donate-btn {
    position: fixed;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #b04b34;
    color: #fff;
    padding: 14px 25px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px 6px 0 0;
    z-index: 9999;
    letter-spacing: 1px;
    display: none;
}

/* Mobile - Fixed bottom button */
.mobile-donate-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    display: none;
    background-color: #b04b34;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-donate-btn:hover {
    background-color: var(--dark-maroon);
}

/* ===== ABOUT SECTION ===== */
.magik-section {
    text-align: center;
    padding: 80px 20px;
}

.magik-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.magik-title span {
    color: #B04B34;
}

.magik-text {
    max-width: 1200px;
    margin: 20px auto;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #000;
    font-weight: 400;
}

/* ===== SIX REASONS SECTION ===== */
.reasons-section {
    padding: 70px 0;
    background: #f5f7fa;
}

.reasons-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: 'Raleway', sans-serif;
}

.reasons-title span {
    color: #B04B34;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.reason-card {
    width: 45%;
    background: #fff;
    padding: 35px 40px;
    border: 2px solid #B04B34;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.reason-icon {
    width: 85px;
}

.reason-card h3 {
    color: #B04B34;
    font-size: 26px;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
    position: relative;
    width: 70%;
    margin: 50px auto;
    overflow: hidden;
}

.testimonial-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: 'Raleway', sans-serif;
}

.testimonial-title span {
    color: #B04B34;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.card {
    width: 80%;
    background: #f4f6f9;
    border: 2px solid #b04b34;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
}

.profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px auto;
    object-fit: cover;
}

.sub {
    color: #444;
    margin-bottom: 10px;
}

.quote {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.prev, .next {
    position: absolute;
    top: 50%;
    padding: 10px 18px;
    border: none;
    background: #b04b34;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%);
}

.prev { 
    left: 0px; 
}
.next { 
    right: 0px; 
}

/* ===== FAQ SECTION ===== */
#faq {
    padding: 70px 0;
    background: #fafafa;
}

.faq-title {
    text-align: center;
    font-family: Raleway;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

.faq-grid {
    display: flex;
    gap: 40px;
}

.faq-col {
    flex: 1;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 18px;
    transition: all .3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    border-color: #B04B34;
}

.faq-question {
    font-family: Raleway;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
}

.faq-icon {
    font-size: 22px;
    font-weight: 700;
    color: #B04B34;
    transition: transform .3s ease;
}

.faq-answer {
    font-family: Roboto;
    font-size: 15px;
    color: #555;
    margin-top: 12px;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.contact-note {
    text-align: center;
    margin: 40px 0;
}

.contact-note p {
    background: #f8e6e2;
    color: #B04B34;
    padding: 12px 18px;
    border-left: 5px solid #B04B34;
    display: inline-block;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===== TEAM SECTION STYLES ===== */
.team.section {
    padding: 40px 0;
}

.team-title-container {
    text-align: center;
    margin-bottom: 30px;
}

.team-title {
    font-family: 'Raleway', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.team-title span {
    color: #B04B34;
}

.team-member-1 {
    margin-bottom: 30px;
}

.member-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .reason-card {
        width: 45%;
    }
    
    .testimonial-slider {
        width: 80%;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 20px;
        justify-content: flex-start;
    }

    .form-section {
        padding: 1.5rem;
        order: 2;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }

    .left-space {
        display: none;
    }

    .donation-form-container {
        max-height: none;
        margin-top: 20px;
    }
    
    .reasons-grid {
        gap: 20px;
    }
    
    .reason-card {
        padding: 25px 30px;
    }
    
    .reason-icon {
        width: 70px;
    }
    
    .reason-card h3 {
        font-size: 22px;
    }
    
    .reason-card p {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 20px;
    }

    .donation-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .donation-option {
        padding: 12px 8px;
    }

    .option-icon {
        width: 35px;
        height: 35px;
    }

    .option-impact {
        font-size: 0.8rem;
    }

    .option-amount {
        font-size: 0.9rem;
    }
    
    .reasons-title,
    .testimonial-title,
    .faq-title {
        font-size: 36px;
    }
    
    .magik-title {
        font-size: 2rem;
    }
    
    .magik-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 5%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        right: 0;
        background: #b04b34;
        width: 100%;
        flex-direction: column;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
        text-align: center;
        margin-left: 0;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        height: 35px;
    }

    .donation-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .donation-option {
        padding: 10px 5px;
    }

    .option-icon {
        width: 30px;
        height: 30px;
    }

    .option-impact {
        font-size: 0.75rem;
    }

    .option-amount {
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-section {
        padding: 1rem;
    }

    /* MOBILE HERO SECTION - FIXED BANNER WITHOUT CUTTING */
    .hero-section {
        height: auto;
        padding: 0;
        flex-direction: column;
        margin-top: 70px;
        background: none !important;
    }

    /* Mobile Banner - Full width without cutting */
    .hero-section::before {
        content: "";
        width: 100%;
        height: 300px;
        background: url('mobile banner.jpeg') center center/cover no-repeat;
        display: block;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .donation-form-container {
        width: 100%;
        margin-top: 0;
        border-radius: 18px 18px 0 0;
        padding: 20px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        background: var(--white);
        position: relative;
        z-index: 2;
    }

    .frequency-duration-container {
        grid-template-columns: 1fr;
    }

    .form-step {
        padding: 15px;
    }
    
    .reasons-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .reason-card {
        width: 100%;
        padding: 20px 25px;
    }
    
    .reason-icon {
        width: 60px;
    }
    
    .reason-card h3 {
        font-size: 20px;
    }
    
    .reason-card p {
        font-size: 16px;
    }
    
    .testimonial-slider {
        width: 90%;
    }
    
    .card {
        width: 90%;
        padding: 30px;
    }
    
    .faq-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .reasons-title,
    .testimonial-title,
    .faq-title {
        font-size: 32px;
    }
    
    .magik-title {
        font-size: 1.8rem;
    }
    
    .magik-text {
        font-size: 1.2rem;
    }

    /* TEAM SECTION - REMOVE EXTRA SPACE AND LINE */
    .team.section {
        padding: 20px 0;
    }

    .team-title-container {
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .team-title {
        font-size: 28px;
        line-height: 1.3;
    }
}

@media (max-width: 600px) {
    .donation-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-slider {
        width: 95%;
    }
    
    .card {
        width: 95%;
        padding: 20px;
    }
    
    .profile {
        width: 120px;
        height: 120px;
    }
    
    .reasons-title,
    .testimonial-title,
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .magik-title {
        font-size: 1.6rem;
    }
    
    .magik-text {
        font-size: 1.1rem;
    }

    /* Mobile Banner Adjustment */
    .hero-section::before {
        height: 280px;
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .donation-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .donation-option {
        padding: 10px 5px;
    }

    .option-impact {
        font-size: 0.7rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 8px;
    }

    .form-step {
        padding: 10px;
    }

    .donation-form-container {
        padding: 15px;
    }
    
    .reason-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reason-icon {
        width: 70px;
        margin: 0 auto;
    }
    
    .reasons-title,
    .testimonial-title,
    .faq-title {
        font-size: 24px;
    }
    
    .magik-title {
        font-size: 1.4rem;
    }
    
    .magik-text {
        font-size: 1rem;
    }
    
    .magik-section {
        padding: 60px 15px;
    }

    /* Mobile Banner Adjustment */
    .hero-section::before {
        height: 250px;
        background-size: cover;
        background-position: center center;
    }

    .team-title {
        font-size: 24px;
    }
}

@media (max-width: 380px) {
    .donation-options {
        grid-template-columns: 1fr;
    }
    
    .reason-card {
        padding: 15px 20px;
    }
    
    .reason-card h3 {
        font-size: 18px;
    }
    
    .reason-card p {
        font-size: 14px;
    }
    
    .faq-item {
        padding: 15px 18px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
    }

    .team-title {
        font-size: 22px;
    }
    
    /* Mobile Banner Adjustment */
    .hero-section::before {
        height: 220px;
        background-size: cover;
        background-position: center center;
    }
}

/* Additional fix for mobile banner cutting */
@media (max-width: 768px) {
    .hero-section::before {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        max-width: 100vw !important;
        left: 0;
        right: 0;
        position: relative;
    }
    
    .hero-section {
        overflow: hidden;
    }
}