
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9fc;
    color: #172b4d;
}


/* ================= TOP BAR ================= */


/* =====================================================
                    TOP BAR
===================================================== */

.top-bar{
    width:100%;
    min-height:42px;

    background:#111827;
    color:white;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;

    font-size:13px;
}

.top-left{
    display:flex;
    align-items:center;
    gap:24px;
}

.top-left a{
    color:#e5e7eb;
text-decoration: none;
    display:flex;
    align-items:center;
    gap:7px;

    transition:.3s;
}

.top-left a:hover{
    color:#3b82f6;
}

.top-left i{
    color:#4f8cff;
}


.top-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.top-right span{
    color:#cbd5e1;
}

.top-right a{
    width:27px;
    height:27px;
text-decoration: none;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:white;

    transition:.3s;
}

.top-right a:hover{
    background:#2878ff;
    transform:translateY(-2px);
}


/* =====================================================
                    NAVBAR
===================================================== */

.navbar{
    width:100%;
    height:82px;

    background:white;

    display:flex;
    align-items:center;

    padding:0 5%;

    gap:35px;

    position:sticky;
    top:0;

    z-index:1000;

    box-shadow:0 5px 20px rgba(0,0,0,.07);
}


/* LOGO */

.logo{
    font-size:30px;
    font-weight:800;

    color:#111827;

    white-space:nowrap;
}

.logo span{
    color:#2878ff;
}


/* NAV MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:25px;
text-decoration: none;
    margin-right:auto;
}

.nav-link{
    color:#374151;
    font-size:15px;
    font-weight:600;
text-decoration: none;
    position:relative;
    transition:.3s;
}

.nav-link::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#2878ff;

    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#2878ff;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}


/* NAV RIGHT */

.nav-right{
    display:flex;
    align-items:center;
    gap:12px;
}


/* =====================================================
                    HOT DEAL BUTTON
===================================================== */

.hot-deals{
    background:#ff4d4d;
    color:white;

    padding:11px 16px;

    border-radius:6px;

    display:flex;
    align-items:center;
    gap:7px;

    font-size:14px;
    font-weight:bold;

    transition:.3s;
}

.hot-deals:hover{
    background:#e63939;
    transform:translateY(-2px);
}

.hot-deals i{
    font-size:14px;
}


/* =====================================================
                    SEARCH
===================================================== */

.search-container{
    height:42px;

    display:flex;
    align-items:center;

    border:1px solid #ddd;

    border-radius:6px;

    overflow:hidden;

    background:white;
}

.search-container input{
    width:190px;
    height:100%;

    border:none;
    outline:none;

    padding:0 13px;

    font-size:14px;
}

.search-container button{
    width:45px;
    height:100%;

    border:none;

    background:#2878ff;
    color:white;

    cursor:pointer;

    transition:.3s;
}

.search-container button:hover{
    background:#145ed2;
}


/* =====================================================
                    ICON BUTTON
===================================================== */

.icon-btn{
    width:42px;
    height:42px;

    border:none;

    background:#f2f5fa;

    border-radius:6px;

    position:relative;

    cursor:pointer;

    font-size:17px;

    color:#374151;

    transition:.3s;
}

.icon-btn:hover{
    color:#2878ff;
    background:#e9f0ff;
}


/* COUNTER */

.counter{
    position:absolute;

    top:-6px;
    right:-5px;

    min-width:18px;
    height:18px;

    padding:0 4px;

    background:#2878ff;
    color:white;

    border-radius:20px;

    font-size:10px;
    font-weight:bold;

    display:flex;
    align-items:center;
    justify-content:center;
}


/* =====================================================
                    MOBILE MENU BUTTON
===================================================== */

.menu-toggle{
    display:none;

    width:42px;
    height:42px;

    border:none;

    background:#f2f5fa;

    border-radius:6px;

    font-size:19px;

    cursor:pointer;
}


/* =====================================================
                    PRODUCTS
===================================================== */

.products{
    padding:80px 5%;
}

.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-heading p{
    color:#2878ff;
    font-size:13px;
    font-weight:bold;
    letter-spacing:2px;

    margin-bottom:10px;
}

.section-heading h1{
    font-size:38px;
}


.product-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.product-card{
    background:white;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.07);

    transition:.3s;
}

.product-card:hover{
    transform:translateY(-7px);
}

.product-image{
    height:250px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-info{
    padding:20px;
}

.product-info h3{
    margin-bottom:10px;
}

.product-info p{
    font-size:20px;
    font-weight:bold;

    color:#2878ff;

    margin-bottom:15px;
}

.add-cart{
    width:100%;

    border:none;

    background:#2878ff;
    color:white;

    padding:12px;

    border-radius:5px;

    cursor:pointer;

    font-weight:bold;
}

.add-cart:hover{
    background:#125ed8;
}


/* =====================================================
                    DEAL
===================================================== */

.deal{
    min-height:320px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:white;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("https://images.unsplash.com/photo-1498049794561-7780e7231661?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;
}

.deal p{
    color:#61a2ff;

    font-size:14px;
    letter-spacing:3px;

    font-weight:bold;
}

.deal h2{
    font-size:55px;
    margin:10px 0 20px;
}

.deal button{
    border:none;

    background:#2878ff;
    color:white;

    padding:13px 28px;

    border-radius:5px;

    cursor:pointer;
}


/* =====================================================
                    CART POPUP
===================================================== */

.cart-popup{
    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:2000;

    justify-content:flex-end;
}

.cart-popup.active{
    display:flex;
}

.cart-box{
    width:420px;
    max-width:100%;

    height:100%;

    background:white;

    padding:25px;

    overflow-y:auto;
}

.cart-header{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding-bottom:18px;

    border-bottom:1px solid #ddd;
}

.cart-header button{
    border:none;
    background:none;

    font-size:22px;

    cursor:pointer;
}

.cart-item{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 0;

    border-bottom:1px solid #eee;
}

.cart-item h4{
    margin-bottom:6px;
}

.remove-item{
    border:none;

    background:#ffe8e8;
    color:#e11d48;

    padding:7px 10px;

    border-radius:4px;

    cursor:pointer;
}

.empty-cart{
    padding:60px 0;

    text-align:center;

    color:#777;
}

.cart-bottom{
    margin-top:25px;
}

.cart-bottom h3{
    margin-bottom:20px;
}

.cart-bottom button{
    width:100%;

    border:none;

    padding:13px;

    background:#2878ff;
    color:white;

    border-radius:5px;

    cursor:pointer;

    font-weight:bold;
}


/* =====================================================
                    RESPONSIVE
===================================================== */

@media(max-width:1100px){

    .nav-menu{
        gap:15px;
    }

    .search-container input{
        width:140px;
    }

    .top-left{
        gap:15px;
    }

}


@media(max-width:900px){

    .top-left a:nth-child(3){
        display:none;
    }

    .nav-menu{
        position:absolute;

        left:0;
        top:82px;

        width:100%;

        background:white;

        display:none;

        flex-direction:column;

        padding:25px;

        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-link::after{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .product-container{
        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:650px){

    .top-bar{
        padding:8px 4%;

        flex-direction:column;
        gap:7px;
    }

    .top-left{
        justify-content:center;
        flex-wrap:wrap;
    }

    .top-right{
        display:none;
    }

    .navbar{
        height:72px;
        padding:0 4%;
        gap:10px;
    }

    .nav-menu{
        top:72px;
    }

    .logo{
        font-size:23px;
    }

    .hot-deals{
        padding:10px;
    }

    .hot-deals{
        font-size:0;
    }

    .hot-deals i{
        font-size:15px;
    }

    .search-container input{
        display:none;
    }

    .search-container button{
        width:42px;
    }

    .product-container{
        grid-template-columns:1fr;
    }

    .section-heading h1{
        font-size:30px;
    }

    .deal h2{
        font-size:40px;
    }

}


@media(max-width:400px){

    .icon-btn,
    .menu-toggle,
    .search-container,
    .hot-deals{
        width:38px;
        height:38px;
    }

    .hot-deals{
        display:flex;
        justify-content:center;
        padding:0;
    }

}



 /* =====================================================
        ELECTRONICS CATEGORY ROLLING SECTION
===================================================== */

.category-slider{
    width:100%;
    height:205px;

    background:#07062d;

    position:relative;

    display:flex;
    align-items:center;

    overflow:hidden;

    padding:0 45px;
}


/* ================= TRACK WRAPPER ================= */

.category-track-wrapper{
    width:100%;
    overflow:hidden;
}


/* ================= TRACK ================= */

.category-track{
    display:flex;
    align-items:center;

    gap:48px;

    width:max-content;

    will-change:transform;
}


/* ================= CATEGORY ITEM ================= */

.category-item{
    width:145px;
    min-width:145px;

    display:flex;
    flex-direction:column;
    align-items:center;

    color:white;

    text-decoration:none;

    text-align:center;

    cursor:pointer;
}


/* ================= CIRCLE ================= */

.category-circle{
    width:125px;
    height:125px;

    border-radius:50%;

    background:#dff5f7;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    border:4px solid rgba(255,255,255,.18);

    transition:.35s;
}


.category-circle img{
    width:100%;
    height:100%;

    object-fit:cover;

    mix-blend-mode:multiply;

    transition:.4s;
}



/* ================= CONTACT HERO ================= */

.contact-hero {
    min-height: 350px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 60px 7%;

    background:
        linear-gradient(
            120deg,
            #101828,
            #172b4d
        );
}

.contact-hero-content {
    max-width: 750px;
}

.contact-hero-content > p:first-child {
    color: #ff5264;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 3px;
}

.contact-hero h1 {
    margin: 15px 0;

    color: white;

    font-size: 55px;

    line-height: 1.05;
}

.contact-hero h1 span {
    color: #ff3147;
}

.hero-line {
    width: 55px;
    height: 3px;

    margin: 20px auto;

    background: #e40018;
}

.hero-description {
    max-width: 600px;

    margin: auto;

    color: #b8c2d1;

    font-size: 14px;

    line-height: 1.7;
}


/* ================= CONTACT INFO ================= */

.contact-info {
    width: 86%;

    margin: -45px auto 80px;

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.info-card {
    min-height: 180px;

    padding: 30px;

    display: flex;

    gap: 20px;

    align-items: flex-start;

    background: white;

    border-radius: 14px;

    box-shadow:
        0 15px 40px rgba(16,24,40,.1);

    transition: .35s;
}

.info-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(16,24,40,.15);
}

.info-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #fff0f2;

    color: #e40018;

    font-size: 20px;
}

.info-card h3 {
    margin-bottom: 10px;

    color: #172b4d;

    font-size: 16px;
}

.info-card p {
    color: #667085;

    font-size: 12px;

    line-height: 1.7;
}

.info-card a {
    display: inline-block;

    margin-top: 12px;

    color: #e40018;

    text-decoration: none;

    font-size: 11px;

    font-weight: bold;
}

.info-card a i {
    margin-left: 5px;
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    width: 86%;

    margin: 0 auto 100px;

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 50px;

    align-items: stretch;
}


/* FORM */

.contact-form-wrapper {
    padding: 40px;

    background: white;

    border-radius: 18px;

    border: 1px solid #eaecf0;
}

.form-heading > p {
    color: #e40018;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;
}

.form-heading h2 {
    margin: 10px 0;

    color: #172b4d;

    font-size: 36px;
}

.form-heading h2 span {
    color: #e40018;
}

.form-heading > span {
    display: block;

    color: #667085;

    font-size: 13px;

    line-height: 1.6;
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #344054;

    font-size: 11px;

    font-weight: bold;
}

.input-box {
    min-height: 48px;

    display: flex;

    align-items: center;

    border: 1px solid #d0d5dd;

    border-radius: 8px;

    transition: .3s;
}

.input-box:focus-within {
    border-color: #e40018;

    box-shadow:
        0 0 0 3px rgba(228,0,24,.08);
}

.input-box i {
    margin-left: 14px;

    color: #98a2b3;

    font-size: 14px;
}

.input-box input,
.input-box textarea {
    width: 100%;

    border: none;

    outline: none;

    padding: 12px;

    color: #344054;

    font-family: inherit;

    font-size: 12px;

    background: transparent;
}

.textarea-box {
    align-items: flex-start;

    min-height: 130px;
}

.textarea-box i {
    margin-top: 15px;
}

.textarea-box textarea {
    min-height: 110px;

    resize: vertical;
}

.send-btn {
    padding: 15px 25px;

    border: none;

    border-radius: 8px;

    background: #e40018;

    color: white;

    font-size: 12px;

    font-weight: bold;

    cursor: pointer;

    transition: .3s;
}

.send-btn:hover {
    background: #b90013;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(228,0,24,.25);
}

.send-btn i {
    margin-left: 8px;
}


/* ================= CONTACT IMAGE ================= */

.contact-image {
    min-height: 600px;

    position: relative;

    overflow: hidden;

    border-radius: 18px;
}

.contact-image img {
    width: 100%;
    height: 100%;

    min-height: 600px;

    display: block;

    object-fit: cover;

    transition: .6s;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.image-message {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: rgba(255,255,255,.96);

    border-radius: 12px;
}

.message-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e40018;

    color: white;

    font-size: 20px;
}

.image-message strong,
.image-message span {
    display: block;
}

.image-message strong {
    color: #172b4d;

    font-size: 13px;
}

.image-message span {
    margin-top: 5px;

    color: #667085;

    font-size: 10px;
}


/* ================= FAQ ================= */

.faq {
    padding: 90px 7%;

    background: white;
}

.faq-title {
    margin-bottom: 40px;

    text-align: center;
}

.faq-title > p {
    color: #e40018;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;
}

.faq-title h2 {
    margin-top: 10px;

    color: #172b4d;

    font-size: 37px;
}

.faq-title h2 span {
    color: #e40018;
}

.faq-grid {
    max-width: 850px;

    margin: auto;

    display: grid;

    gap: 12px;
}

.faq details {
    padding: 20px 22px;

    border: 1px solid #eaecf0;

    border-radius: 10px;

    cursor: pointer;

    transition: .3s;
}

.faq details:hover {
    border-color: #e40018;
}

.faq summary {
    list-style: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #172b4d;

    font-size: 13px;

    font-weight: bold;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary i {
    color: #e40018;

    transition: .3s;
}

.faq details[open] summary i {
    transform: rotate(45deg);
}

.faq details p {
    max-width: 700px;

    padding-top: 15px;

    color: #667085;

    font-size: 12px;

    line-height: 1.7;
}


/* ================= CTA ================= */

.contact-cta {
    padding: 85px 7%;

    text-align: center;

    background:
        linear-gradient(
            120deg,
            #172b4d,
            #0d1729
        );

    color: white;
}

.contact-cta p {
    color: #ff5264;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 3px;
}

.contact-cta h2 {
    margin: 15px 0;

    font-size: 40px;
}

.contact-cta span {
    color: #b8c2d1;

    font-size: 13px;
}

.contact-cta a {
    display: inline-block;

    margin-top: 25px;

    padding: 14px 25px;

    border-radius: 7px;

    background: #e40018;

    color: white;

    text-decoration: none;

    font-size: 11px;

    font-weight: bold;

    transition: .3s;
}

.contact-cta a:hover {
    transform: translateY(-4px);

    background: #ff2036;
}

.contact-cta a i {
    margin-right: 7px;
}



/* ================= STATS ================= */

.stats {
    width: 90%;

    margin: 70px auto;

    padding: 40px 0;

    border-top: 1px solid #ddd;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    text-align: center;
}

.stats strong {
    display: block;

    color: #df0018;

    font-size: 42px;

    font-weight: 900;
}

.stats span {
    display: block;

    color: #555;

    margin-top: 8px;

    font-size: 17px;
}
.stats p {
    grid-column: 1 / -1;

    margin: 0;

    color: #666;

    font-size: 16px;

    line-height: 1.8;

    text-align: justify;

    padding: 0 10px;
}
.stats p + p {
    margin-top: -15px;
}


/* MOBILE */

@media (max-width: 768px) 

{

    .stats {
        grid-template-columns: repeat(2, 1fr);

        width: 94%;

        padding: 30px 20px;
    }

}
/* ================= WHATSAPP ================= */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 80px;

    text-decoration: none;

    z-index: 100;
}

.whatsapp span,
.whatsapp b {
    display: block;

    text-align: center;
}

.whatsapp span {
    font-weight: bold;
}

.whatsapp b {
    color: #d80018;
}

.whatsapp i {
    display: flex;

    justify-content: center;
    align-items: center;

    width: 62px;
    height: 62px;

    margin: auto;

    background: #25d366;

    color: white;

    border-radius: 8px;

    font-size: 40px;

    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}


/* ================= FOOTER ================= */

footer {
    background: #171717;

    color: white;

    padding: 60px 8%;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 2fr;

    gap: 50px;
}

.footer-logo h2 {
    color: #e50019;

    font-size: 30px;
}

.footer-logo p {
    color: #e50019;

    font-size: 20px;

    font-weight: bold;
}

footer h3 {
    margin-bottom: 20px;
}

footer a {
    display: block;

    color: #bbb;

    text-decoration: none;

    margin-bottom: 12px;
}

footer a:hover {
    color: white;
}

footer p {
    color: #bbb;

    margin-bottom: 10px;
}




/* ================= HOVER ================= */

.category-item:hover .category-circle{
    transform:translateY(-7px) scale(1.05);

    border-color:white;

    box-shadow:
        0 10px 25px rgba(0,0,0,.22);
}


.category-item:hover .category-circle img{
    transform:scale(1.08);
}


.category-item h3{
    margin-top:10px;

    font-size:14px;

    font-weight:700;

    white-space:nowrap;
}


/* ================= ARROWS ================= */

.category-arrow{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:white;

    color:#222;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:10;

    box-shadow:
        0 4px 12px rgba(0,0,0,.18);

    transition:.3s;
}


.category-arrow:hover{
    background:#111;
    color:white;

    transform:
        translateY(-50%)
        scale(1.08);
}


.category-arrow.left{
    left:5px;
}


.category-arrow.right{
    right:5px;
}


/* =====================================================
                    RESPONSIVE
===================================================== */

@media(max-width:1000px){

    .category-slider{
        height:190px;
        padding:0 42px;
    }

    .category-track{
        gap:35px;
    }

    .category-item{
        width:125px;
        min-width:125px;
    }

    .category-circle{
        width:105px;
        height:105px;
    }

    .category-item h3{
        font-size:12px;
    }

}


@media(max-width:650px){

    .category-slider{
        height:175px;
        padding:0 38px;
    }

    .category-track{
        gap:25px;
    }

    .category-item{
        width:110px;
        min-width:110px;
    }

    .category-circle{
        width:90px;
        height:90px;
    }

    .category-item h3{
        font-size:11px;
    }

    .category-arrow{
        width:34px;
        height:34px;
    }

}


/* ================= RESPONSIVE ================= */

@media(max-width:1100px) {

    .header {
        flex-wrap: wrap;
    }

    .search-box {
        order: 5;

        width: 100%;

        max-width: none;
    }

    .navbar {
        gap: 18px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 450px;
    }

    .contact-image img {
        min-height: 450px;
    }

}


@media(max-width:850px) {

    .top-bar {
        display: none;
    }

    .header {
        padding: 20px;
    }

    .navbar {
        overflow-x: auto;

        justify-content: flex-start;

        padding: 0 20px;

        white-space: nowrap;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    footer {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width:600px) {

    .logo {
        min-width: 140px;

        font-size: 24px;
    }

    .hot-btn {
        padding: 12px;

        font-size: 10px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-icon span {
        display: none;
    }

    .contact-hero {
        min-height: 300px;

        padding: 50px 6%;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-info {
        width: 92%;
    }

    .contact-section {
        width: 92%;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-heading h2 {
        font-size: 30px;
    }

    .contact-form-wrapper {
        padding: 22px;
    }

    .contact-image {
        min-height: 350px;
    }

    .contact-image img {
        min-height: 350px;
    }

    .faq {
        padding: 70px 5%;
    }

    .faq-title h2 {
        font-size: 30px;
    }

    .contact-cta h2 {
        font-size: 30px;
    }

    footer {
        grid-template-columns: 1fr;
    }

}

