/* ============================================================
   IMPORT CZCIONKI
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700&display=swap');


/* ============================================================
   ZMIENNE GLOBALNE
   ============================================================ */
:root {
    --color-primary:    #195b35;
    --color-accent:     #d4af37;
    --color-text:       #333333;
    --color-text-light: #f4f4f4;
    --color-bg-light:   #f9f9f9;
    --color-white:      #ffffff;
    --font-main:        'Exo 2', sans-serif;
    --header-height:    116px; /* 65px top-bar + 50px main-nav + 1px border */
}


/* ============================================================
   RESET I STYLE PODSTAWOWE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-white);
    padding-top: var(--header-height);
}

body.noscroll {
    overflow: hidden;
}

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

h1, h2, h3 {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
    font-weight: 400;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}


/* ============================================================
   NAGŁÓWEK
   ============================================================ */
.main-header {
    background: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: var(--header-height);
    transition: transform 0.3s ease-in-out;
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

/* ── Top bar ── */
.top-bar {
    background-color: var(--color-white);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    height: 65px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .logo {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-family: var(--font-main);
    font-weight: 700;
    text-decoration: none;
}

.top-contact {
    display: flex;
}

.top-contact-item {
    margin-left: 30px;
    font-size: 1rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.top-contact-item span {
    color: var(--color-text);
    font-weight: 400;
    margin-right: 8px;
    opacity: 0.8;
}

.top-contact-item a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-contact-item a:hover {
    color: var(--color-accent);
}

/* ── Główna nawigacja ── */
.main-nav {
    background-color: var(--color-primary);
    height: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 10px -5px rgba(0,0,0,0.05);
}

.main-nav .container {
    width: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.main-nav li {
    margin: 0;
    position: relative;
}

.main-nav > .container > ul > li > a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 5px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    display: block;
}

.main-nav > .container > ul > li > a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.main-nav > .container > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.main-nav > .container > ul > li > a:hover::after {
    width: 70%;
}

.main-nav li.active > a {
    color: var(--color-accent);
    font-weight: 700;
    opacity: 1;
}

.main-nav li.active > a::after {
    width: 70%;
    background-color: var(--color-accent);
}

/* ── Dropdown ── */
.main-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-primary);
    min-width: 240px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 999;
    border-top: 3px solid var(--color-accent);
    list-style: none;
}

.main-nav li:hover .dropdown {
    display: block;
}

.main-nav .dropdown li {
    display: block;
    width: 100%;
}

.main-nav .dropdown a {
    display: block;
    padding: 11px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0.9;
    transition: padding 0.2s ease, color 0.2s ease;
}

.main-nav .dropdown a:hover {
    padding-left: 24px;
    color: var(--color-accent);
    opacity: 1;
}

.main-nav .dropdown a::after {
    display: none;
}

/* ── Hamburger ── */
.hamburger-menu {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 10001;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transition: all 0.25s ease-in-out;
}

.hamburger-menu span:nth-child(1) { top: 0px; }
.hamburger-menu span:nth-child(2) { top: 9px; }
.hamburger-menu span:nth-child(3) { top: 18px; }

.hamburger-menu.is-open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background: var(--color-white);
}

.hamburger-menu.is-open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-menu.is-open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background: var(--color-white);
}

/* ── Mobile nav ── */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: var(--color-primary);
    z-index: 10000;
    padding: 100px 30px 30px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    list-style: none;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--color-accent);
}

.mobile-nav li.active a {
    color: var(--color-accent);
}


/* ============================================================
   SEKCJE – STYLE WSPÓLNE
   ============================================================ */
.page-section {
    padding: 80px 0;
}

.page-section:nth-of-type(even) {
    background-color: var(--color-bg-light);
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.section-title.left-align {
    text-align: left;
}

.section-title.left-align::after {
    left: 0;
    transform: translateX(0);
}

.page-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: -20px auto 30px auto;
    font-weight: 300;
}


/* ============================================================
   PARTICLES – EFEKT CZĄSTECZEK W HERO
   ============================================================ */
.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0%   { transform: translateY(100vh) translateX(0);   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-40px) translateX(30px); opacity: 0; }
}

/* ============================================================
   HERO – STRONA GŁÓWNA
   ============================================================ */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                      url('hero-cmentarz.jpg');
    background-color: #0f1f0f;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.hero-section .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-section .price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 40px;
}


/* ============================================================
   PASEK STATYSTYK
   ============================================================ */
.stats-bar {
    background-color: var(--color-primary);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    color: var(--color-text-light);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.88rem;
    opacity: 0.85;
    letter-spacing: 0.3px;
}


/* ============================================================
   SEKCJA O NAS – STRONA GŁÓWNA
   ============================================================ */
.about-section-home {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-section-home img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img-placeholder {
    background: linear-gradient(135deg, #195b35, #0f3320);
    border-radius: 10px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* ============================================================
   KROKI – STRONA GŁÓWNA
   ============================================================ */
.steps-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.step-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-box .icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.step-box h3 {
    font-size: 1.5rem;
}


/* ============================================================
   PRZYCISK CTA
   ============================================================ */
.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
    margin-top: 20px;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
}


/* ============================================================
   BANER CTA – CIEMNY
   ============================================================ */
.cta-section {
    background-color: #1a1a1a;
    padding: 70px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-text-light);
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-section p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-phone-big {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.cta-phone-big:hover {
    color: var(--color-white);
}


/* ============================================================
   BANER PODSTRONY (page-hero)
   ============================================================ */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                linear-gradient(135deg, #0f1f0f, #195b35);
    padding: 70px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: var(--color-text-light);
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    margin: 0;
}


/* ============================================================
   INFO BOX (karty z ikoną)
   ============================================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--color-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.info-box h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-box .icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    line-height: 1;
    display: block;
}


/* ============================================================
   KONTAKT – KARTY
   ============================================================ */
.contact-cta-box {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact-cta-box .label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 600;
    display: block;
}

.contact-cta-box h2 {
    color: var(--color-text-light);
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.contact-cta-box p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.contact-cta-box strong {
    color: var(--color-white);
}

.phone-link-big {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    line-height: 1;
    margin-bottom: 8px;
}

.phone-link-big:hover {
    color: var(--color-white);
}

.phone-note {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 34px 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-top: 4px solid var(--color-accent);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-card .card-icon {
    font-size: 2.6rem;
    margin-bottom: 16px;
    display: block;
}

.contact-card h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-card a:hover {
    color: var(--color-accent);
}

.info-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.encourage-section {
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: 46px 40px;
    text-align: center;
}

.encourage-section h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.encourage-section p {
    color: #555;
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 28px;
}

.encourage-section .accordion-section {
    text-align: left;
}


/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
    background: var(--color-bg-light);
    border-left: 10px solid var(--color-accent);
    padding: 30px 40px;
    margin: 30px auto 50px auto;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-box h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.highlight-box p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.8;
}


/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-section {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.accordion-item {
    background-color: var(--color-white);
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--color-bg-light);
}

.accordion-header::after {
    content: '+';
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: 300;
    transition: transform 0.3s ease-out;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding: 0 30px 20px 30px;
    margin-bottom: 0;
    line-height: 1.8;
}


/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
    max-width: 900px;
    margin: 40px auto 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline-section::after {
    content: "";
    display: table;
    clear: both;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background-color: var(--color-primary);
    opacity: 0.2;
    z-index: 1;
}

.timeline-item {
    padding: 20px 0;
    position: relative;
    clear: both;
}

.timeline-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 4px solid var(--color-white);
    box-shadow: 0 0 0 3px var(--color-accent);
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border-top: 5px solid var(--color-primary);
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
    transform: translateX(-30px);
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
    transform: translateX(30px);
}

.timeline-item.is-visible .timeline-content {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================================
   STOPKA
   ============================================================ */
.main-footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-section h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-section strong {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}


/* ============================================================
   ZDJĘCIE FIRMY
   ============================================================ */
.firma-photo {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 50px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================================================
   WRAPPER MAPY Z ODSTĘPEM
   ============================================================ */
.map-wrapper {
    margin-top: 50px;
}

/* ============================================================
   MAPA
   ============================================================ */
.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ============================================================
   CENNIK
   ============================================================ */
.price-box-main {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    border-radius: 10px;
    border-left: 10px solid var(--color-accent);
}

.price-box-main .price-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.price-box-main .price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 10px 0;
}

.price-box-main .price-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .top-contact {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .about-section-home {
        grid-template-columns: 1fr;
    }

    .steps-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-cta-box {
        padding: 36px 24px;
    }

    .info-two-col {
        grid-template-columns: 1fr;
    }

    .encourage-section {
        padding: 36px 24px;
    }

    .phone-link-big {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .timeline-section::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 65px);
        float: right;
        transform: translateX(30px);
    }

    .timeline-icon {
        left: 0;
        transform: translateX(0);
    }
}