:root {
    --color-primary: #2d6a4f;
    --color-secondary: #40916c;
    --color-accent: #74c69d;
    --color-dark: #1b4332;
    --color-light: #d8f3dc;
    --color-white: #ffffff;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-bg-alt: #f8faf9;
    --color-border: #b7e4c7;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(45, 106, 79, 0.12);
    --shadow-medium: 0 8px 30px rgba(45, 106, 79, 0.18);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.btn-accent:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ad-disclosure {
    background-color: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.header-main {
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo span {
    color: var(--color-secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul li a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    margin: 6px 0;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
    color: var(--color-white);
}

.hero-text h1 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 3.2rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 0 0 400px;
    position: relative;
}

.hero-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transform: rotate(3deg);
}

.hero-card h3 {
    margin-bottom: 16px;
}

.hero-card ul {
    list-style: none;
}

.hero-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card ul li:last-child {
    border-bottom: none;
}

.hero-card ul li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
}

.asymmetric-intro {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.asymmetric-intro-text {
    flex: 1;
    padding-top: 40px;
}

.asymmetric-intro-visual {
    flex: 0 0 45%;
    position: relative;
}

.asymmetric-intro-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.offset-block {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 24px;
    border-radius: 8px;
    max-width: 200px;
}

.offset-block strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 4px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card-image {
    height: 200px;
    background-color: var(--color-light);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    margin-bottom: 12px;
}

.service-card-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.service-price .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-price .price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.features-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-large {
    flex: 1 1 55%;
    min-width: 300px;
}

.feature-large-image {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: var(--color-light);
}

.feature-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-stack {
    flex: 1 1 40%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.feature-item h4 {
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
}

.stat-item .label {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-light);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
}

.testimonial-author-info strong {
    display: block;
    color: var(--color-dark);
}

.testimonial-author-info span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-section .btn {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cta-section .btn:hover {
    background-color: var(--color-light);
    transform: translateY(-2px);
}

.overlap-section {
    position: relative;
    padding: 100px 0;
}

.overlap-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--color-light);
    border-radius: 12px 0 0 12px;
}

.overlap-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.overlap-text {
    flex: 1;
}

.overlap-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-secondary);
}

.overlap-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 350px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    margin-bottom: 4px;
}

.contact-text span {
    color: var(--color-text-light);
}

.contact-form-container {
    flex: 1 1 400px;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d6a4f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-submit {
    width: 100%;
}

footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--color-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--color-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    opacity: 1;
}

.page-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-light);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-story-text {
    flex: 1 1 400px;
}

.about-story-image {
    flex: 1 1 350px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-light);
}

.about-story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
    padding: 40px 24px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.team-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 0 0 280px;
    text-align: center;
}

.team-member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: var(--color-light);
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 4px;
}

.team-member span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-item {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-light);
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h3 {
    margin-bottom: 16px;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-detail-price {
    display: inline-block;
    background-color: var(--color-light);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 500px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--color-primary);
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.disclaimer-box {
    background-color: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.disclaimer-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .hero-card {
        transform: none;
    }

    .asymmetric-intro {
        flex-direction: column;
    }

    .asymmetric-intro-visual {
        flex: 0 0 auto;
        width: 100%;
    }

    .overlap-bg {
        width: 100%;
        border-radius: 0;
    }

    .overlap-content {
        flex-direction: column;
    }

    .overlap-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .section {
        padding: 60px 0;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-medium);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-top-content {
        justify-content: center;
        text-align: center;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide,
    .container-narrow {
        padding: 0 16px;
    }

    .btn {
        padding: 12px 24px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item .number {
        font-size: 2.4rem;
    }
}
