/* ===============================
   PRODUCT / HOME CAROUSEL SECTIONS
================================ */

.gecko-store-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

.gecko-store-container {
    max-width: 1300px;
    margin: 0 auto;
}

.gecko-store-title {
    text-align: center;
    font-size: 38px;
    margin: 0 0 10px;
    color: #1f1f1f;
}

.gecko-store-subtitle {
    text-align: center;
    color: #666;
    margin: 0 0 35px;
    font-size: 17px;
}


/* ===============================
   CAROUSEL
================================ */

.gecko-carousel-wrap {
    position: relative;
    padding: 0 62px;
}

.gecko-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding: 10px 4px 24px;
    -webkit-overflow-scrolling: touch;
}

.gecko-carousel::-webkit-scrollbar {
    height: 10px;
}

.gecko-carousel::-webkit-scrollbar-track {
    background: #e7e7e7;
    border-radius: 20px;
}

.gecko-carousel::-webkit-scrollbar-thumb {
    background: #6F9940;
    border-radius: 20px;
}


/* ===============================
   PRODUCT CARDS
================================ */

.gecko-card-front {
    flex: 0 0 300px;
    max-width: 300px;
    min-width: 300px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gecko-card-front:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.gecko-card-image-wrap {
    position: relative;
    background: #eee;
    overflow: hidden;
}

.gecko-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gecko-card-front:hover .gecko-card-image {
    transform: scale(1.07);
}

.gecko-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.48);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gecko-card-front:hover .gecko-hover-overlay {
    opacity: 1;
}

.gecko-quick-btn {
    background: #fff;
    color: #111;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.gecko-quick-btn:hover {
    transform: scale(1.05);
    background: #6F9940;
    color: #fff;
}

.gecko-card-content {
    padding: 20px;
    text-align: center;
}

.gecko-card-name {
    margin: 0 0 8px;
    font-size: 21px;
    color: #222;
}

.gecko-card-price {
    font-size: 23px;
    font-weight: bold;
    color: #6F9940;
}

.gecko-badge-sold {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #b02a37;
    color: #fff;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
    z-index: 2;
}


/* ===============================
   CAROUSEL ARROWS + DOTS
================================ */

.gecko-carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 100;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.gecko-carousel-arrow:hover {
    background: #6F9940;
    transform: translateY(-50%) scale(1.08);
}

.gecko-arrow-left {
    left: 8px;
}

.gecko-arrow-right {
    right: 8px;
}

.gecko-carousel-dots {
    display: none;
}

.gecko-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.22);
    cursor: pointer;
    transition: 0.2s ease;
    padding: 0;
}

.gecko-dot.active {
    background: #6F9940;
    transform: scale(1.12);
}


/* ===============================
   MODAL
================================ */

.gecko-modal {
    display: none !important;
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.gecko-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.gecko-modal.active {
    pointer-events: auto !important;
}

.gecko-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
}

.gecko-modal-box {
    pointer-events: auto !important;
}

.gecko-modal-box {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 1050px;
    min-height: 620px;
    max-height: 92vh;
    margin: 0 auto;
    overflow-y: auto;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.gecko-modal-inner {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    min-height: 620px;
    align-items: center;
}

.gecko-modal-image-col {
    background: #f7f7f7;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gecko-modal-image {
    width: 100%;
    max-width: 340px;
    max-height: 420px;
    object-fit: contain;
    border-radius: 12px;
}

.gecko-modal-content-col {
    padding: 42px 42px 42px 18px;
}

.gecko-modal-title {
    font-size: 30px;
    margin: 0 0 18px;
}

.gecko-modal-price {
    font-size: 26px;
    font-weight: bold;
    color: #6F9940;
    margin-bottom: 24px;
}

.gecko-modal-code {
    margin-bottom: 22px;
    color: #555;
}

.gecko-modal-description {
    margin: 24px 0 28px;
    line-height: 1.7;
    color: #333;
}

.gecko-modal-description strong {
    display: block;
    font-size: 17px;
    margin-bottom: 10px;
    color: #111;
}

.gecko-modal-description-text {
    background: #f7f7f7;
    padding: 16px 18px;
    border-radius: 12px;
}

.gecko-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.gecko-purchase-btn,
.gecko-sold-btn,
.gecko-cart-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 13px 20px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    text-align: center;
}

.gecko-purchase-btn:hover {
    opacity: 0.9;
}

.gecko-cart-btn {
    background: #222;
}

.gecko-sold-btn {
    background: #b02a37;
}

.gecko-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    text-align: center;
    z-index: 5;
    border-radius: 999px;
    padding: 6px 10px;
}

.close-x {
    display: block;
    font-size: 28px;
    color: #333;
    line-height: 1;
}

.close-text {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: -2px;
}

body.gecko-modal-open {
    overflow: hidden !important;
	touch-action: none !important;
}


/* ===============================
   BUTTON COLORS
================================ */

.button-palm-leaf,
.btn-palm-leaf {
    background: #6F9940;
}

.button-national-anthem,
.btn-national-anthem {
    background: #407099;
}

.button-black,
.btn-black {
    background: #111;
}

.button-baton-rouge,
.btn-baton-rouge {
    background: #994070;
}

.btn-green {
    background: #4caf50;
}

.btn-blue {
    background: #2196f3;
}

.btn-orange {
    background: #ff9800;
}

.btn-brown {
    background: #8d6e63;
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

    .gecko-store-section {
        padding: 50px 0;
    }

    .gecko-store-title {
        font-size: 30px;
        padding: 0 16px;
    }

    .gecko-store-subtitle {
        padding: 0 16px;
    }

    .gecko-carousel-wrap {
        padding: 0;
    }

    .gecko-carousel {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        padding: 10px 16px 24px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .gecko-carousel::-webkit-scrollbar {
        display: none;
    }

    .gecko-card-front {
        flex: 0 0 82%;
        max-width: 340px;
        min-width: 280px;
        scroll-snap-align: center;
        border-radius: 16px;
    }

    .gecko-card-image {
        height: 240px;
    }

    .gecko-hover-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05));
        align-items: flex-end;
        padding-bottom: 18px;
        box-sizing: border-box;
    }

    .gecko-carousel-arrow {
        display: none;
    }

    .gecko-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 18px;
    }

    .gecko-dot {
        width: 17px;
        height: 17px;
    }

    html.gecko-modal-open,
    body.gecko-modal-open {
        overflow: hidden !important;
        height: 100% !important;
    }

    body.gecko-modal-open .site-header,
    body.gecko-modal-open .mobile-bottom-nav {
        display: none !important;
    }

 .gecko-modal.active {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100svh !important;
        background: #fff !important;
        z-index: 2147483647 !important;
        overflow: hidden !important;
        padding: 0 !important;
    }

.gecko-modal-box {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100svh !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: #fff !important;
        overflow: hidden !important;
        box-shadow: none !important;
    }

.gecko-modal-inner {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

.gecko-modal-image-col {
        width: 100% !important;
        flex: 0 0 auto !important;
        padding: 74px 18px 14px !important;
        background: #f6f6f6 !important;
        box-sizing: border-box !important;
    }

.gecko-modal-image {
        width: 100% !important;
        max-width: 360px !important;
        height: 220px !important;
        object-fit: cover !important;
        border-radius: 16px !important;
        display: block !important;
        margin: 0 auto !important;
    }
	
.gecko-modal-content-col {
    width: 100% !important;
    flex: 1 !important;
    padding: 20px 18px calc(90px + env(safe-area-inset-bottom)) !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
}


.gecko-modal-title {
        font-size: 28px !important;
        margin: 0 0 10px !important;
    }

.gecko-modal-price {
        font-size: 26px !important;
        margin-bottom: 18px !important;
    }

.gecko-modal-description {
        margin: 14px 0 18px !important;
    }

.gecko-modal-description-text {
        max-height: 95px !important;
        overflow: auto !important;
        padding: 14px !important;
        border-radius: 12px !important;
    }

.gecko-modal-actions {
		margin-top: auto !important;
        margin-top: 18px !important;
    }

.gecko-purchase-btn {
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
        text-align: center !important;
        font-size: 18px !important;
        padding: 14px !important;
    }

.gecko-modal-close {
        position: fixed !important;
        top: 14px !important;
        right: 16px !important;
        width: 58px !important;
        height: 58px !important;
        z-index: 2147483647 !important;
        background: #fff !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 14px rgba(0,0,0,0.25) !important;
    }
}
 
@media (max-height: 900px){
	
.gecko-modal-image {
	height:200px !important;
}

}

.mobile-cart-wrap{
    position:relative;
    display:inline-block;
}

.mobile-cart-count{
    position:absolute;
    top:-10px;
    right:-14px;
    background:#d9534f;
    color:#fff;
    font-size:10px;
    font-weight:700;
    min-width:17px;
    height:17px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
   
.shop-section {
    padding: 120px 20px 70px;
    background: #f7f7f7;
}

.shop-container {
            max-width: 1300px;
            margin: 0 auto;
        }

.shop-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 10px;
        }

.shop-subtitle {
   text-align: center;
   color: #666;
   margin-bottom: 35px;
}

.shop-filters {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 12px;
   margin-bottom: 35px;
}

.shop-filter-btn {
    border: none;
    background: #111;
    color: #fff;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
}

.shop-filter-btn.active,
.shop-filter-btn:hover {
    background: #6F9940;
}


.shop-card.is-hidden {
    display: none !important;
}

.shop-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(260px,1fr));
    gap:28px;
    max-width:1300px;
    margin:0 auto;
}
       

.shop-card {
   background: #fff;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 10px 26px rgba(0,0,0,0.12);
   border: 1px solid rgba(0,0,0,0.06);
  
}

.shop-img-wrap {
    position: relative;
    height: 260px;
    background: #f7f7f7;
    overflow: hidden;

    display:flex;
    align-items:center;
    justify-content:center;
}

.shop-img {
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.shop-badge {
   position: absolute;
   top: 12px;
   right: 12px;
   background: #111;
   color: #fff;
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 12px;
   font-weight: bold;
}

.shop-card-body {
   padding: 20px;
   text-align: center;
}

.shop-card-body h3 {
   margin: 0 0 8px;
   font-size: 21px;
}

.shop-price {
   display: inline-block;
   background: #6F9940;
   color: #fff;
   font-size: 20px;
   font-weight: bold;
   padding: 8px 16px;
   border-radius: 999px;
   margin-bottom: 14px;
}

.shop-desc {
   color: #666;
   font-size: 14px;
   line-height: 1.5;
   min-height: 42px;
}

.shop-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.btn-green { background: #4caf50; }
.btn-blue { background: #2196f3; }
.btn-orange { background: #ff9800; }
.btn-brown { background: #8d6e63; }
.btn-black { background: #222; }

.button-palm-leaf { background: #6F9940; }
.button-national-anthem { background: #407099; }
.button-black { background: #111; }
.button-baton-rouge { background: #994070; }

@media (max-width: 1000px) {
.shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
.shop-section {
   padding: 90px 14px 90px;
}

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

.shop-card {
   max-width: 390px;
   margin: 0 auto;
 }
}
		
.cart-link{
    position:relative;
    color:#fff;
    font-size:22px;
    text-decoration:none;
}

.cart-count{
    position:absolute;
    top:-8px;
    right:-10px;
    background:#d9534f;
    color:#fff;
    font-size:11px;
    font-weight:700;
    min-width:18px;
    height:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 4px;
}
    
/* css/checkout.css */
/* ===============================
   POPUP BUTTONS
================================ */

.cart-success-popup{
    position:fixed;
    top:100px;
    right:20px;
    width:340px;
    background:#fff;
    padding:24px !important;
    border-radius:18px !important;
    box-shadow:0 8px 25px rgba(0,0,0,.22);
    z-index:9999;
}

.cart-added-item{
    margin-top:16px !important;
	margin-bottom: 16px !important;
    padding:14px !important;
    background:#f8f8f8 !important;
    border-radius:12px !important;
    display:flex;
    justify-content:space-between;
    gap:12px;
}

.cart-popup-summary{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-top:14px !important;
	margin-bottom: 16px !important;
}

.cart-popup-summary div{
    background:#f7f7f7;
    padding:14px !important;
	text-align: center !important;
    border-radius:12px;
}

.cart-popup-summary span{
    display:block;
    font-size:12px;
    color:#666;
}

.cart-popup-summary strong{
    display:block;
    margin-top:4px;
}

.popup-buttons{
    display:flex;
    gap:10px;
    margin-top:14px;
}

.popup-buttons button,
.popup-buttons a{
    flex:1;
    padding:12px;
    border-radius:10px;
    text-align:center;
    text-decoration:none;
    font-weight:700;
    border:none;
}

.popup-buttons button{
    background:#eee;
    color:#111;
}

.popup-buttons a{
    background:#6F9940;
    color:#fff;
}

@media(max-width:768px){
.cart-success-popup{
        left:14px;
        right:14px;
        top:85px;
        width:auto;
    }
}

.mini-cart-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding-bottom:14px;
    border-bottom:1px solid #eee;
}

.mini-cart-head strong{
    font-size:18px;
}

.mini-cart-head span{
    font-size:13px;
    color:#666;
}

.mini-cart-list{
    margin-top:14px;
    max-height:220px;
    overflow-y:auto;
}

.mini-cart-row{
    display:flex;
    justify-content:space-between;
    gap:14px;
    padding:13px 0;
    border-bottom:1px solid #eee;
}

.mini-cart-row span{
    display:block;
    margin-top:4px;
    font-size:13px;
    color:#666;
}


.mini-cart-right{
    min-width:110px;
    text-align:right;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:flex-end;
}

.mini-cart-remove{
    display:block;
    margin-top:8px;
    font-size:12px;
}

.mini-cart-remove{
    display:block;
    margin-top:8px;
    color:#b23b3b;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
}

.mini-cart-remove:hover{
    text-decoration:underline;
}

.mini-cart-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:16px;
    padding-top:14px;
    border-top:2px solid #111;
    font-size:17px;
}

.mini-cart-qty-controls{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    margin-top:8px;
}

.mini-cart-qty-controls a{
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eee;
    color:#111;
    border-radius:50%;
    text-decoration:none;
    font-weight:700;
    line-height:1;
}

.mini-cart-qty-controls span{
    display:inline-block;
    min-width:18px;
    text-align:center;
    font-weight:700;
}


@media(max-width:768px){
    .mini-cart-list{
        max-height:180px;
    }
}

.gecko-badge-unavailable{
    position:absolute;
    top:18px;
    right:-42px;
    ...
    transform:rotate(45deg);
}

.gecko-badge-unavailable{
    position:absolute;
    top:18px;
    right:-42px;

    width:180px;
    text-align:center;

    padding:10px 0;

    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;

    transform:rotate(45deg);

    box-shadow:0 4px 12px rgba(0,0,0,.25);

    z-index:6;
}

.unavailable-badge-box label{
    display:block;
    font-size:18px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;
}

.unavailable-badge-title{
    font-size:24px;
    font-weight:800;
}

.home-announcement-section{
    padding:50px 18px 20px;
}

.home-announcement-card{
    position:relative;
    max-width:1150px;
    margin:0 auto;
    border-radius:24px;
    overflow:hidden;
    min-height:320px;
    box-shadow:0 14px 35px rgba(0,0,0,.18);
}

.home-announcement-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
}

.home-announcement-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25));
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:45px;
}

.home-announcement-overlay h2{
    font-size:42px;
    margin:0 0 10px;
    font-weight:900;
}

.announcement-date{
    font-size:20px;
    font-weight:800;
    margin-bottom:14px;
    color:#f4d06f;
}

.home-announcement-overlay p{
    max-width:620px;
    font-size:18px;
    line-height:1.6;
}

@media(max-width:768px){
    .home-announcement-section{
        padding:30px 14px 10px;
    }

    .home-announcement-card img{
        height:420px;
    }

    .home-announcement-overlay{
        padding:24px;
        background:linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.25));
        justify-content:flex-end;
    }

    .home-announcement-overlay h2{
        font-size:30px;
    }

    .announcement-date{
        font-size:17px;
    }

    .home-announcement-overlay p{
        font-size:16px;
    }
	
	.announcement-date{
    color:#f4d06f !important;
    font-weight:800;
    text-decoration:none !important;
}

.announcement-date a{
    color:#f4d06f !important;
    text-decoration:none !important;
}

.home-announcement-overlay a{
    color:#f4d06f !important;
    text-decoration:none !important;
}
}

.why-scale-section{
    padding:80px 20px;
    background:#fff;
}

.why-scale-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.why-scale-header h2{
    font-size:42px;
    margin-bottom:12px;
}

.why-scale-header p{
    font-size:18px;
    color:#666;
}

.why-scale-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.why-card{
    text-align:center;
    padding:30px;
}

.why-icon{
    font-size:56px;
    margin-bottom:20px;
    color:#6F9940;
}

.why-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:768px){

    .why-scale-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .why-scale-header h2{
        font-size:32px;
    }


    .why-scale-section{
        padding:50px 20px;
    }


    .why-card{
        padding:10px 0;
    }

    .why-icon{
        margin-bottom:10px;
        font-size:48px;
    }

    .why-card h3{
        margin-bottom:8px;
    }

    .why-card p{
        margin:0;
    }
}

.got-questions-section{
    color:#fff;
    padding:80px 20px;
    text-align:center;
}

.got-questions-content{
    max-width:800px;
    margin:0 auto;
}

.got-questions-content h2{
    font-size:42px;
    margin-bottom:15px;
}

.got-questions-content p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:30px;
}

.got-questions-btn{
    display:inline-block;
    color:#fff;
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:800;
    font-size:18px;
}

.got-questions-btn:hover{
    color:#fff;
    opacity:.92;
}

@media(max-width:768px){
    .got-questions-section{
        padding:55px 18px;
    }

    .got-questions-content h2{
        font-size:32px;
    }

    .got-questions-content p{
        font-size:18px;
    }
}

.footer-mobile-simple{
    display:none;
}

