:root{
    --primary:#C49A4A;
    --primary-hover:#B38728;
    --gold:#C49A4A;
    --gold-light:#F8F3EA;
    --dark:#1F2937;
    --text:#6B7280;
    --light:#FFFFFF;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    overflow-x:hidden;
    background:#fff;
}

section{
    padding:90px 0;
}

/* TOP BAR */

.topbar{
    background:#1F2937;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.topbar a{
    color:#fff;
    text-decoration:none;
}

.topbar i{
    color:var(--gold);
    margin-right:5px;
}

/* HEADER */

.main-header{
    background:#fff;
    box-shadow:0 3px 20px rgba(0,0,0,.08);
    padding:10px 0;
}

.site-logo{
    height:80px;
    width:auto;
}

.navbar-brand{
    color:var(--dark)!important;
    font-weight:700;
}

.nav-link{
    color:var(--dark)!important;
    font-weight:600;
    padding:12px 18px!important;
    transition:.3s;
}

.nav-link:hover{
    color:var(--gold)!important;
}

.navbar-toggler{
    border:none;
    box-shadow:none!important;
}

/* SERVICE MENU */

.service-menu{
    background:#1F2937;
}

.desktop-menu{
    list-style:none;
    margin:0;
    padding:0;
}

.desktop-menu li a{
    display:block;
    padding:15px 25px;
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.desktop-menu li a:hover{
    background:var(--gold);
    color:#fff;
}

.dropdown-menu{
    border:none;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

/* HERO SECTION */

.hero{
    position:relative;
    min-height:500px; /* reduced height */
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

/* Badge */

.hero-badge{
    display:inline-block;
    background:#C49A4A;
    color:#ffffff;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

/* Heading - Navy Color */

.hero-title{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    color:#1F2937; /* your logo navy color  */
    margin-bottom:20px;
    max-width:700px;
}

/* Text - Dark Navy */

.hero-text{
    font-size:18px;
    color:#1F2937;
    max-width:550px;
    margin-bottom:30px;
}

/* Button */

.btn-main{
    background:#C49A4A;
    color:#fff;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

.btn-main:hover{
    background:#B38728;
    color:#fff;
}

/* Mobile */

@media(max-width:991px){

    .hero{
        min-height:450px;
        text-align:center;
    }

    .hero-title{
        font-size:38px;
    }

    .hero-text{
        font-size:16px;
        margin:auto auto 25px;
    }
}

/* BUTTON */

.btn-main{
    background:var(--gold);
    color:#fff;
    padding:15px 35px;
    border-radius:12px;
    text-decoration:none;
    display:inline-block;
    font-weight:600;
    border:2px solid var(--gold);
    transition:.3s;
}

.btn-main:hover{
    background:var(--primary-hover);
    border-color:var(--primary-hover);
    color:#fff;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:var(--dark);
}

.section-title p{
    max-width:700px;
    margin:auto;
}

/* LIGHT SECTION */

.bg-light{
    background:var(--gold-light)!important;
}

/* TRUST BOX */

.trust-box{
    text-align:center;
    padding:25px;
}

.trust-box h3{
    color:var(--gold);
    font-size:42px;
    font-weight:700;
}

/* SERVICES */

.service-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    border-bottom:4px solid var(--gold);
}

.service-icon{
    width:70px;
    height:70px;
    line-height:70px;
    text-align:center;
    background:var(--gold-light);
    color:var(--gold);
    border-radius:15px;
    font-size:28px;
    margin-bottom:20px;
}

/* PROCESS */

.step-card{
    text-align:center;
}

.step-circle{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin:auto;
    border:4px solid #1F2937;
}

/* FEATURES */

.feature-item{
    padding:15px 0;
    font-size:18px;
}

.feature-item i{
    color:var(--gold);
    margin-right:10px;
}

/* PRICING */

.pricing-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.featured{
    border:3px solid var(--gold);
    transform:scale(1.05);
}

.price{
    font-size:48px;
    font-weight:700;
    color:var(--gold);
}

/* TESTIMONIAL */

.testimonial{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.stars{
    color:var(--gold);
}

/* CONTACT */

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.form-control{
    padding:14px;
    border-radius:12px;
    border:1px solid #ddd;
}

.form-control:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 .2rem rgba(196,154,74,.15);
}

/* FOOTER */

footer{
    background:#1F2937;
    color:#fff;
    padding:60px 0 20px;
}

.footer-title{
    color:var(--gold);
    font-weight:700;
    margin-bottom:20px;
}

.footer-link{
    display:block;
    color:#d4d8df;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-link:hover{
    color:var(--gold);
}

/* MOBILE */

@media(max-width:991px){

    .topbar .container{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .hero{
        text-align:center;
        padding:70px 0;
    }

    .hero h1{
        font-size:38px;
    }

    .featured{
        transform:none;
    }

    .navbar-collapse{
        margin-top:15px;
        border-top:1px solid #eee;
        padding-top:15px;
    }
}
 
.rent-section{
    padding:80px 0;
    background:#f8f8f8;
}

.section-heading{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.section-heading h2{
    font-size:42px;
    font-weight:800;
    color:#1F2937;
    margin-bottom:20px;
}

.heading-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:25px;
}

.heading-divider span{
    width:80px;
    height:3px;
    background:#C49A4A;
}

.heading-divider i{
    color:#C49A4A;
    font-size:18px;
}

.section-heading p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.rent-box{
    background:#fff;
    border:1px solid #C49A4A;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.3s;
}

.rent-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.rent-box i{
    font-size:45px;
    color:#C49A4A;
    margin-bottom:20px;
}

.rent-box h4{
    font-size:24px;
    font-weight:700;
    color:#333;
    margin-bottom:15px;
}

.rent-box p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

    .section-heading h2{
        font-size:30px;
    }

    .rent-box{
        margin-bottom:20px;
    }

}
 
.special-services{
    padding:80px 0;
    background:#f5f5f5;
}

.services-title{
    text-align:center;
    margin-bottom:60px;
}

.services-title h2{
    font-size:38px;
    font-weight:800;
    color:#1F2937;
}

.title-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin:20px 0;
}

.title-divider span{
    width:70px;
    height:3px;
    background:#C49A4A;
}

.title-divider i{
    color:#C49A4A;
}

.services-title p{
    color:#666;
    max-width:800px;
    margin:auto;
}

.service-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    min-height:220px;
    transition:.3s;
    border:1px solid #eee;
}

.service-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.service-box i{
    font-size:36px;
    color:#C49A4A;
    margin-bottom:15px;
}

.service-box h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
}

.service-box p{
    font-size:14px;
    line-height:1.8;
}

.dark-box{
    background:#08133d;
    color:#fff;
}

.dark-box h4,
.dark-box p{
    color:#fff;
}

.gold-box{
    background:#E9B949;
    color:#fff;
}

.gold-box i,
.gold-box h4,
.gold-box p{
    color:#fff;
}
 
.about-hero{
    padding:100px 0;
    background:#F8F3EA;
}

.about-badge{
    background:#C49A4A;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:20px;
}

.about-hero h1{
    font-size:55px;
    font-weight:800;
    color:#1F2937;
    margin-bottom:20px;
}

.about-hero p{
    font-size:18px;
    line-height:1.8;
}

.about-image{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

.about-company{
    padding:80px 0;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-card{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h3{
    color:#C49A4A;
    font-size:40px;
    font-weight:800;
}

.why-us{
    padding:80px 0;
    background:#f9f9f9;
}

.why-card{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:45px;
    color:#C49A4A;
    margin-bottom:20px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#1F2937;
}

@media(max-width:991px){

    .about-hero{
        text-align:center;
    }

    .about-hero h1{
        font-size:36px;
    }

    .about-image{
        margin-top:30px;
    }

    .about-stats{
        margin-top:30px;
        grid-template-columns:1fr;
    }
}
 .contact-section{
    padding:80px 20px;
    background:#f8f9fa;
}

.contact-container{
    max-width:1200px;
    margin:auto;
}

.contact-heading{
    text-align:center;
    margin-bottom:50px;
    animation:fadeDown 1s ease;
}

.contact-heading h1{
    color:#0b1f3a;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-heading p{
    color:#666;
    font-size:18px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    animation:fadeUp 1s ease;
}

.contact-info h2,
.contact-form h2{
    color:#0b1f3a;
    margin-bottom:25px;
    font-size:28px;
}

.info-box{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.info-icon{
    width:55px;
    height:55px;
    background:#0b1f3a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-right:15px;
}

.info-content h4{
    margin:0;
    color:#0b1f3a;
    font-size:18px;
}

.info-content p{
    margin:5px 0 0;
    color:#666;
    line-height:1.6;
}

.contact-form form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:15px;
    font-size:15px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0b1f3a;
    outline:none;
}

.contact-form textarea{
    height:140px;
    resize:none;
}

.contact-form button{
    background:#0b1f3a;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#132f55;
    transform:translateY(-2px);
}

.map-section{
    margin-top:60px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.map-section iframe{
    width:100%;
    height:400px;
    border:0;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-heading h1{
        font-size:32px;
    }

    .contact-info,
    .contact-form{
        padding:25px;
    }
}

    .service-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: default;
    }
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.15) !important;
    }
    .service-card .icon-wrapper {
        transition: transform 0.3s ease;
    }
    .service-card:hover .icon-wrapper {
        transform: scale(1.1);
    }
    .gold-border {
        border-top: 4px solid #C49A4A !important;
    }
        /* Feature Hover Effect */
    .feature-item:hover {
        background: #f0ece6 !important;
        transform: translateX(8px);
        border-left-color: #C49A4A !important;
    }

    /* Floating Animations */
    @keyframes floatY {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }

    /* Pulse Animation */
    @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        100% { transform: scale(2); opacity: 0; }
    }

    /* Spin Animation */
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Border Glow Animation */
    @keyframes borderGlow {
        0%, 100% { opacity: 0.6; }
        50% { opacity: 1; }
    }

    /* Image Hover Scale */
    .image-wrapper:hover #mainImage {
        transform: scale(1.03);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .position-absolute {
            position: relative !important;
            top: auto !important;
            bottom: auto !important;
            left: auto !important;
            right: auto !important;
            margin: 0.5rem !important;
        }
        .image-wrapper .position-absolute {
            display: inline-flex !important;
            margin: 0.5rem !important;
        }
        .image-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }
        .image-wrapper .position-relative {
            width: 100%;
        }
        /* Hide some decorative elements on mobile */
        .image-wrapper .position-absolute.top-0.end-0.m-4 {
            display: none !important;
        }
        .image-wrapper .position-absolute.top-0.start-0.m-4 {
            display: none !important;
        }
    }
/* Testimonial Card Hover Effect */
    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(196, 154, 74, 0.15) !important;
        border-color: rgba(196, 154, 74, 0.3) !important;
    }

    
    /* Card Hover Effects */
    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(196, 154, 74, 0.12) !important;
        border-color: rgba(196, 154, 74, 0.2) !important;
    }
    .stat-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(196, 154, 74, 0.1);
    }
    
:root {
    --primary: #1e2b3a;
    --secondary: #f8f6f3;
    --accent: #C49A4A;
    --accent-dark: #b0883e;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* Hero Banner - Shrinkable */
.page-banner {
    background: linear-gradient(135deg, rgba(30, 43, 58, 0.92) 0%, rgba(30, 43, 58, 0.85) 100%),
                url('images/faq-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-banner.shrink {
    padding: 40px 0 30px;
}

.page-banner.shrink h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.page-banner.shrink p {
    font-size: 15px;
    margin-bottom: 0;
    max-width: 600px;
}

.page-banner.shrink .banner-badge {
    padding: 4px 16px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.page-banner.shrink::before {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.page-banner.shrink::after {
    width: 150px;
    height: 150px;
    top: -40px;
    left: -40px;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    transition: all 0.4s ease;
}

.page-banner h1 span {
    color: var(--accent);
}

.page-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: 0.85;
    line-height: 1.8;
    transition: all 0.4s ease;
}

.banner-badge {
    display: inline-block;
    background: rgba(196, 154, 74, 0.15);
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 154, 74, 0.2);
    transition: all 0.4s ease;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f6f3;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
}

.section-title .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.section-title .divider span {
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.section-title .divider i {
    color: var(--accent);
    font-size: 1.2rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
}

/* Accordion */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    background: #fff;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 28px rgba(196, 154, 74, 0.08);
}

.accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    padding: 20px 24px;
    border: none;
    gap: 12px;
}

.accordion-button::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-right: 8px;
}

.accordion-button:not(.collapsed)::before {
    transform: rotate(90deg);
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::before {
    color: var(--accent);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:hover {
    background: #faf8f6;
}

.accordion-button:not(.collapsed):hover {
    background: var(--primary);
}

.accordion-body {
    padding: 20px 24px 24px;
    color: #555;
    line-height: 1.9;
    font-size: 0.95rem;
    background: #fff;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: 0 8px 28px rgba(196, 154, 74, 0.12);
}

/* Help Box */
.help-box {
    background: var(--primary);
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.help-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.08);
    border-radius: 50%;
}

.help-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(196, 154, 74, 0.06);
    border-radius: 50%;
}

.help-box .container {
    position: relative;
    z-index: 1;
}

.help-box h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.help-box h3 i {
    color: var(--accent);
    margin-right: 10px;
}

.help-box p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.help-btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 74, 0.25);
}

.help-btn i {
    margin-right: 8px;
}

/* Responsive */
@media(max-width: 768px) {
    .page-banner {
        padding: 60px 0 50px;
    }
    
    .page-banner.shrink {
        padding: 30px 0 20px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .page-banner.shrink h1 {
        font-size: 24px;
    }
    
    .page-banner p {
        font-size: 16px;
    }
    
    .page-banner.shrink p {
        font-size: 13px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .accordion-button {
        font-size: 14px;
        padding: 16px 18px;
    }
    
    .accordion-body {
        font-size: 14px;
        padding: 16px 18px 20px;
    }
    
    .help-box {
        padding: 30px 20px;
    }
    
    .help-box h3 {
        font-size: 1.5rem;
    }
    
    .help-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media(max-width: 576px) {
    .page-banner h1 {
        font-size: 26px;
    }
    
    .page-banner.shrink h1 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .accordion-button {
        font-size: 13px;
        padding: 14px 16px;
    }
    
    .accordion-button::before {
        font-size: 0.7rem;
    }
}