:root {
    --primary-color: #f4c542;
    --dark-bg: #153a34;
    --text-dark: #153a34;
    --text-light: #fff;
    --bg-light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
.image-preview-box {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px;
}
.image-preview-box img {
    height: 80px; width: auto; border-radius: 6px; 
    border: 1px solid #ccc; padding: 3px; background: #fff;
    object-fit: contain; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.file-info { font-size: 0.75rem; color: #888; margin-top: 5px; display: block; }
body {
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 25px;
    text-transform: lowercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
	letter-spacing:3px;
	font-size:1.2rem;
	font-weight: 400;
}
.btn:hover {
    background-color: #dfb234;
    transform: scale(1.02);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
	height: 70px;
}
header img {
	max-width:80%;
}

.logo {
    flex: 1;
    font-weight: 700;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}
.logo span {
    color: var(--primary-color);
    margin-left: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    font-size: 1.2rem;
	color: #0F5F53
}
nav ul li {
	font-family: "Ropa Sans", sans-serif;
}

.header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}
.header-actions a {
	color: #0F5F53
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px; 
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-link span {
    line-height: 1;
    transform: translateY(1px);
}

.icon-link, .contact-link svg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-link {
    color: var(--text-dark);
    transition: color 0.3s ease;
}
.contact-link:hover, .icon-link:hover {
    color: var(--primary-color);
}

.mobile-icons {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-bg);
    cursor: pointer;
}

.hero {
    height: 370px;
    background: url('images/0.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-text-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
}
.hero-text-wrapper h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-text-wrapper .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-btn {
    position: absolute;
    bottom: 0;
    transform: translate(-50%, 50%); 
    left:50%;
    z-index: 10;
	font-size:1.2rem;
	font-weight: 400;
}
.hero-btn:hover {
    transform: translate(-50%, 50%) scale(1.02);
}

.categories { padding: 80px 0 60px; }
.section-title { font-size: 2rem; text-transform: uppercase; color: #153a34; }
.section-subtitle { font-size: 1.2rem; margin-bottom: 20px; color: #345969; }

.grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.category-card {
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}
.category-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}
.category-card span {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
}

.why-us {
    background-color: #fff;
    padding: 35px 70px;
    border-radius: 40px;
    margin: 60px auto;
    border: 2px solid var(--primary-color);
}
.why-us .section-title { text-align: center; font-size:2rem; }
.why-us .section-subtitle { margin-bottom: 60px; text-align: center; font-size:1.2rem; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 40px;
}
.feature-item { display: flex; gap: 25px; align-items: flex-start; }
.feature-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
}
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-text p { font-size: 0.95rem; color: #224c45; line-height: 1.6; font-weight: 700; }

.custom-trips {
    margin: 60px auto;
    height: 500px;
    background: url('images/45.jpg') no-repeat center center/cover;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}
.custom-trips::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    border-radius: 12px;
}
.custom-trips h2 { margin-bottom: 15px; font-size: 2.2rem; position: relative; z-index:1;}
.custom-trips p { margin-bottom: 25px; max-width: 800px; font-size: 1.2rem; position: relative; z-index:1;}
.custom-trips .btn { position: relative; z-index:1; }

.offers-section { padding: 40px 0; }
.offers-container { display: grid; grid-template-columns: 1fr 3fr; gap: 20px; }

.promo-block {
    background: #222;
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 250px;
}
.promo-block::before {
    content: '';
    position: absolute; top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.5); border-radius: 12px;
}
.promo-block h3, .promo-block p, .promo-block .btn { position: relative; z-index: 1; }

.cards-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.offer-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.offer-img { height: 200px; position: relative; background-size: cover; background-position: center; }

.offer-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.offer-info p.category {
    font-size: 0.75rem; color: #888; margin-bottom: 5px; text-transform: uppercase;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.offer-info h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 15px; color: var(--dark-bg); line-height: 1.3; }

.offer-price {
    margin-top: auto;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--dark-bg);
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 4px;
}
.offer-price .currency { font-size: 0.9rem; font-weight: 600; color: #666; }

.rating {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,0.5); color: #fff;
    padding: 6px 12px; font-size: 0.85rem; font-weight: 700; border-radius: 20px;
    display: flex; align-items: center; gap: 6px;
}

.review-card {
    border: 3px solid var(--primary-color);
    border-radius: 12px; overflow: hidden;
    display: flex; flex-direction: column; background: #fff;
}
.review-header { background-color: var(--primary-color); color: var(--dark-bg); font-size: 1.6rem; font-weight: 700; padding: 10px 20px; }
.review-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.review-body h4 { font-size: 1rem; color: var(--dark-bg); margin-bottom: 5px; font-weight: 700; }
.reviewer { font-size: 0.75rem; color: #666; margin-bottom: 15px; }
.review-text { font-size: 0.85rem; color: #555; line-height: 1.6; text-align: justify; }

.article-card { border: 1px solid #eaeaea; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; background: #fff; }
.article-img { height: 220px; background-size: cover; background-position: center; }
.article-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.article-info h4 { font-size: 1.15rem; font-weight: 800; color: var(--dark-bg); margin-bottom: 15px; }
.article-info p { font-size: 0.85rem; color: #666; line-height: 1.6; }

.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 150px 150px; gap: 15px; margin-bottom: 40px; }
.gallery-item { border-radius: 8px; background-size: cover; background-position: center; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item.more-photos { position: relative; cursor: pointer; }
.gallery-item.more-photos::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); border-radius: 8px; }
.gallery-item.more-photos::after { content: '+' attr(data-count); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 2.5rem; font-weight: 700; }

.tour-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-bottom: 60px; }
.tour-description p { margin-bottom: 20px; color: #555; font-size: 0.95rem; line-height: 1.8; text-align: justify; }

.accordion-wrapper { margin-top: 40px; }
details { border-bottom: 1px solid #eee; padding: 15px 0; }
summary { font-size: 1.1rem; font-weight: 600; color: var(--dark-bg); cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.summary-content { display: flex; align-items: center; gap: 15px; }
.summary-icon { width: 30px; height: 30px; stroke: var(--dark-bg); }
.arrow-icon { transition: transform 0.3s ease; }
details[open] summary .arrow-icon { transform: rotate(180deg); }
.details-content { padding: 20px 0 10px 45px; color: #555; font-size: 0.95rem; }

/* MAPA W ZAKŁADCE - Zgodna z poprawkami (Białe/Szare Tło, Legenda poziomo) */
.map-wrapper { background: #f9f9f9; border-radius: 12px; padding: 20px; text-align: center; position: relative; border: 1px solid #eaeaea; }
.map-wrapper img { width: 100%; max-height: 500px; object-fit: contain; border-radius: 8px; }
.map-legend { 
    display: flex; flex-wrap: wrap; gap: 15px; justify-content: center;
    margin-top: 20px; font-size: 0.85rem; font-weight: 600; color: var(--dark-bg);
}
.map-legend span { white-space: nowrap; background: #fff; padding: 5px 10px; border-radius: 4px; border: 1px solid #ddd; }

.booking-sidebar { position: sticky; top: 100px; height: fit-content; }
.booking-card { background: #eaeaeb; border-radius: 12px; padding: 25px 20px; }

.input-with-icon { position: relative; margin-bottom: 10px; }
.input-with-icon .input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: #777; pointer-events: none; }
.form-control { width: 100%; padding: 12px 15px 12px 45px; border: none; border-radius: 8px; font-size: 0.85rem; font-weight: 700; color: #333; background: #fff; appearance: none; cursor: pointer; }
select.form-control { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23777" stroke-width="2"><path d="M6 9l6 6 6-6"/></svg>'); background-repeat: no-repeat; background-position: right 15px center; }

.availability { display: flex; justify-content: space-between; align-items: flex-end; font-size: 0.85rem; color: #555; font-weight: 700; border-bottom: 2px solid #2D5A68; padding-bottom: 8px; margin-top: 35px; margin-bottom: 15px; }
.availability-number { font-weight: 800; color: #333; }

.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.price-label { font-size: 0.9rem; color: #555; font-weight: 700; }
.price-value { font-size: 1.6rem; font-weight: 800; color: #333; letter-spacing: -0.5px; }

.btn-full { width: 100%; background: var(--primary-color); color: #000; padding: 15px; font-weight: 700; border: none; border-radius: 25px; cursor: pointer; text-transform: uppercase; font-size: 1rem; transition: background 0.3s; margin-bottom: 10px; text-align:center;}
.btn-outline { width: 100%; background: transparent; color: var(--dark-bg); padding: 15px; font-weight: 600; border: 1px solid var(--dark-bg); border-radius: 25px; cursor: pointer; font-size: 0.9rem; text-align:center;}

.seo-text { background-color: var(--bg-light); padding: 40px 20px; font-size: 0.9rem; color: black; margin-top: 40px; border-top: 1px solid #ddd; }
.seo-text strong { margin-bottom: 15px; font-size: 1.2rem; display:block; }
.seo-text p { margin-top:25px; text-align:justify; }

footer { background-color: var(--dark-bg); color: #fff; padding: 60px 20px 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.85rem; color: #aaa; cursor: pointer; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.socials { display: flex; gap: 25px; align-items: center; }

/* --- STYLE DLA REZERWACJA FLOW --- */
.booking-flow-container { padding-right: 20px; }
.flow-step { display: none; animation: fadeInStep 0.4s ease forwards; }
.flow-step.active { display: block; }
@keyframes fadeInStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.flow-title { font-size: 1.3rem; color: #345969; font-weight: 700; margin-bottom: 25px; }

.flow-input-group { background-color: #ededed; border-radius: 6px; padding: 8px 15px; margin-bottom: 12px; display: flex; flex-direction: column; }
.flow-input-group label { font-size: 0.7rem; color: #666; font-weight: 700; text-transform: lowercase; margin-bottom: 3px; }
.flow-input-group input { background: transparent; border: none; outline: none; font-size: 1rem; font-weight: 700; color: #345969; width: 100%; }

.flow-phone-group { display: flex; gap: 15px; }
.flow-phone-group .prefix { width: 80px; }
.flow-phone-group .number { flex-grow: 1; }

.flow-checkbox { display: flex; align-items: flex-start; position: relative; padding-left: 30px; cursor: pointer; font-size: 0.85rem; color: #555; user-select: none; margin-bottom: 15px; }
.flow-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.flow-checkbox .checkmark { position: absolute; top: 2px; left: 0; height: 20px; width: 20px; background-color: #eee; border-radius: 4px; }
.flow-checkbox input:checked ~ .checkmark { background-color: #f4c542; }
.flow-checkbox .checkmark:after { content: ""; position: absolute; display: none; }
.flow-checkbox input:checked ~ .checkmark:after { display: block; left: 7px; top: 3px; width: 4px; height: 9px; border: solid #153a34; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.insurance-grid { display: flex; gap: 10px; font-size: 0.75rem; text-align: center; margin-bottom: 30px; }
.ins-col { flex: 1; display: flex; flex-direction: column; gap: 12px; padding: 15px 5px; border-radius: 8px; }
.ins-col.ins-labels { text-align: left; font-weight: 700; color: #333; padding-top: 45px; }
.ins-col.bg-gray { background-color: #f5f5f5; }
.ins-col h4 { font-size: 0.9rem; color: #345969; margin-bottom: 10px; }

.flow-actions { display: flex; gap: 15px; margin-top: 30px; align-items: center; }
.flow-btn { background-color: #f4c542; color: #333; border: none; padding: 10px 30px; font-weight: 700; border-radius: 20px; cursor: pointer; }
.flow-btn-back { background-color: transparent; color: #345969; border: 2px solid #345969; padding: 10px 30px; font-weight: 700; border-radius: 20px; cursor: pointer; }
.flow-btn-large { background-color: #e0e0e0; color: #888; border: none; padding: 15px 40px; font-weight: 700; border-radius: 6px; cursor: pointer; }

.flow-summary-block { font-size: 0.85rem; color: #555; line-height: 1.6; margin-bottom: 25px; }
.flow-payment-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.flow-payment-card { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; padding: 15px; cursor: pointer; font-weight: 600; color: #333; font-size: 0.9rem; }
.flow-payment-card input { margin-right: 15px; }
.flow-payment-card.active-pay { background-color: #f4f7f9; border-color: #345969; }
.flow-box-highlight { background-color: #f9f9f9; border-radius: 8px; padding: 15px; margin-top: 20px; }

#custom-lightbox { display: none; position: fixed; z-index: 99999; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.9); align-items: center; justify-content: center; }
#custom-lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 2.5rem; cursor: pointer; font-weight: bold; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: white; font-size: 3rem; cursor: pointer; padding: 20px; }
.lightbox-prev { left: 10px; } .lightbox-next { right: 10px; }

@media (max-width: 992px) {
    .offers-container { grid-template-columns: 1fr; }
    .cards-scroller { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .tour-layout { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; margin-top: 30px; }
}

@media (max-width: 768px) {
    .cards-scroller { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 15px; padding-bottom: 15px; margin-right: -20px; padding-right: 40px; }
    .offer-card { width: 80vw; max-width: 300px; flex-shrink: 0; }
    nav, .header-actions { display: none; }
    .mobile-icons.menu { display: block; order: -1; }
    header { padding: 15px 20px; }
    .logo { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-us { padding: 35px 20px; border-radius: 20px; margin: 30px 15px; }
    nav.active { display: flex !important; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background-color: #fff; padding: 30px 20px; box-shadow: 0 10px 15px rgba(0,0,0,0.05); z-index: 99; }
    nav.active ul { flex-direction: column; align-items: center; gap: 20px; }
}
/* --- NOWOCZESNY SUWAK OPINII (NATIVE SCROLL SNAP) --- */
.smooth-scroller {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* Przyciąganie do krawędzi */
    -ms-overflow-style: none; /* Ukrycie paska IE/Edge */
    scrollbar-width: none; /* Ukrycie paska Firefox */
}
.smooth-scroller::-webkit-scrollbar {
    display: none; /* Ukrycie paska Chrome/Safari/Mobile */
}
.smooth-scroller > * {
    scroll-snap-align: start; /* Karty zawsze zatrzymują się idealnie na początku */
}

/* --- SIATKA OPINII DLA opinie.html --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    align-items: start;
}
/* --- STRZAŁKI DO SLIDERÓW --- */
.slider-wrapper {
    position: relative;
    width: 100%;
    min-width: 0;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #f4c542;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    font-weight: bold;
    color: #153a34;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}
.slider-arrow:hover {
    background: #f4c542;
    color: #153a34;
    transform: translateY(-50%) scale(1.1);
}
.left-arrow { left: -20px; }
.right-arrow { right: -15px; }

/* Ukrywamy strzałki na telefonach - tam użytkownik naturalnie przesuwa palcem */
@media (max-width: 768px) {
    .slider-arrow { display: none; }
}
/* --- KOMPLEKSOWA NAPRAWA WERSJI MOBILNEJ --- */
@media (max-width: 768px) {
    /* Mniejsze napisy na głównym banerze */
    .hero-text-wrapper h1 { font-size: 2.2rem !important; }
    .hero-text-wrapper .subtitle { font-size: 1rem !important; }
    .hero { height: 320px; }
    
    /* Poprawa sekcji "Dlaczego My" - ikony nad tekstem */
    .feature-item { flex-direction: column; text-align: center; align-items: center; gap: 15px; }
    .why-us { padding: 30px 15px; margin: 30px 0; border-width: 1px; }
    
    /* Naprawa ułożenia sekcji wycieczek i opinii na telefonie */
    .offers-container { display: flex; flex-direction: column; gap: 20px; }
    .promo-block { min-height: 200px; padding: 20px 15px; }
    
    /* Karty opinii i suwak dopasowane do szerokości palca */
    .review-card { min-width: 85vw !important; max-width: 85vw !important; }
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
}
/* --- RESPONSYWNA STOPKA --- */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Tablet: Dwie kolumny */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smartfon: Jedna kolumna i wyśrodkowanie */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}