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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.navigation {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: #52b788;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #52b788;
}

.ad-label {
    background-color: #d62828;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #ffffff;
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: #e8f5e9;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
}

.intro-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image-side {
    flex: 1;
    background-color: #f1f3f5;
}

.intro-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text-side {
    flex: 1;
    padding: 2rem;
}

.intro-text-side h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.intro-text-side p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.services-highlight {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-header-center h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #6c757d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2.5rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem 1rem 1.5rem;
    font-size: 0.95rem;
    color: #6c757d;
}

.service-card .price {
    padding: 0 1.5rem 1rem 1.5rem;
    font-size: 1.3rem;
    color: #2d6a4f;
    font-weight: 700;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #52b788;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #40916c;
}

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-visual {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-container > p {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #52b788;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1b4332;
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.trust-points {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    padding: 2rem;
    background-color: #2d2d2d;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #52b788;
}

.trust-item p {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.7;
}

.footer {
    background-color: #0f0f0f;
    color: #c0c0c0;
    padding: 4rem 2rem 1rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #52b788;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d2d2d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #52b788;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #40916c;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #2d2d2d;
}

.page-hero {
    padding: 6rem 2rem 4rem 2rem;
    background-color: #2d6a4f;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #d8f3dc;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #52b788;
    font-weight: bold;
}

.service-price-box {
    background-color: #f1f8f4;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cta-section-centered {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.about-hero-split {
    display: flex;
    min-height: 600px;
}

.about-hero-text {
    flex: 1;
    padding: 4rem;
    background-color: #2d6a4f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.story-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-wrapper p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-section-asymmetric {
    padding: 6rem 2rem;
    background-color: #ffffff;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.team-content {
    flex: 1.3;
}

.team-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    background-color: #e9ecef;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.approach-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.approach-steps {
    list-style: none;
    counter-reset: step-counter;
}

.approach-steps li {
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.approach-steps li:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #52b788;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.approach-steps li strong {
    display: block;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.approach-steps li p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.approach-visual {
    flex: 1;
    background-color: #e9ecef;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.mission-section {
    padding: 6rem 2rem;
    background-color: #2d6a4f;
    color: #ffffff;
}

.mission-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.mission-content-center p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.contact-hero {
    padding: 5rem 2rem 3rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.15rem;
    color: #6c757d;
}

.contact-main-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 0.7rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #1a1a1a;
}

.note-small {
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
    margin-top: 0.5rem;
}

.contact-visual-block {
    flex: 1;
    background-color: #e9ecef;
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.reach-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.reach-content {
    max-width: 900px;
    margin: 0 auto;
}

.reach-content h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.reach-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.faq-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 5rem 2rem;
    background-color: #2d6a4f;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: #d8f3dc;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e7f5ec;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #2d6a4f;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    background-color: #52b788;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #40916c;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #2d6a4f;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2d6a4f;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background-color: #2d6a4f;
    color: #ffffff;
}

.next-steps-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.next-steps-content {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: #52b788;
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-info h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-info p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #52b788;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-container a {
    color: #2d6a4f;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1b4332;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    font-style: italic;
    color: #6c757d;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-wrapper,
    .form-section-split,
    .service-detail-block,
    .about-hero-split,
    .team-section-asymmetric,
    .approach-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-block.reverse {
        flex-direction: column;
    }

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

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .trust-points {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-text-content h1 {
        font-size: 2rem;
    }

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

    .values-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
}