/* New Color Variables */
:root {
    --color-primary-accent: #6B705C; /* Earthy Green */
    --color-secondary-accent: #A5A58D; /* Muted Green */
    --color-tertiary-accent: #B7B7A4; /* Subtle Green */
    --color-neutral-dark: #28282B; /* Near Black */
    --color-neutral-light: #F5F5DC; /* Creamy Off-White */
    --color-text-main: #3C3C3C; /* Dark Gray for readability */
    --color-white: #FFFFFF;
    --color-light-bg: #F9F9F9; /* A slightly lighter background for sections */
}

/* General Body and HTML Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif; /* Changed font family */
    color: var(--color-text-main);
    background-color: var(--color-neutral-light);
    line-height: 1.7; /* Slightly increased line height */
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container for Centering Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Increased padding */
}

/* Spacer for Fixed Header */
.header-spacer {
    height: 80px; /* Adjust based on nav height */
}

/* Typography */
h1, h2, h3 {
    font-family: 'Roboto', sans-serif; /* Changed font family */
    font-weight: 700;
    color: var(--color-neutral-dark);
    margin-bottom: 0.6em;
}

h1 {
    font-size: 2em; /* Adjusted font size */
    line-height: 1.1;
}

h2 {
    font-size: 1.5em; /* Adjusted font size */
    line-height: 1.2;
}

h3 {
    font-size: 1.7em; /* Adjusted font size */
}

p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 1.2em;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 14px 30px; /* Slightly more padding */
    border-radius: 30px; /* More rounded */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary-accent);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: var(--color-secondary-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background-color: var(--color-secondary-accent);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background-color: var(--color-primary-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-large {
    padding: 18px 40px; /* Larger padding */
    font-size: 1.2em;
}

/* Navigation Bar */
.primary-nav {
    background-color: var(--color-neutral-dark);
    padding: 0.8em 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-size: 2.2em; /* Slightly larger logo */
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
}

.nav-links {
    display: none; /* Hidden by default on mobile */
    align-items: center;
    gap: 2em; /* More space between links */
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.05em;
    padding: 8px 12px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-primary-accent);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-action {
    display: none;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px; /* Slightly larger */
    height: 28px; /* Slightly larger */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle .bar-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-neutral-dark);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    padding: 3em;
    box-sizing: border-box;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 25px; /* Adjusted position */
    right: 25px; /* Adjusted position */
    background: transparent;
    border: none;
    font-size: 2.5em; /* Larger close icon */
    color: var(--color-white);
    cursor: pointer;
    line-height: 1;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: var(--color-primary-accent);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.8em; /* More space between mobile links */
    text-align: center;
    width: 100%;
}

.mobile-nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.6em; /* Larger font size */
    padding: 1em 0;
    display: block;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 8px;
}

.mobile-nav-links a:hover {
    color: var(--color-primary-accent);
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-button {
    margin-top: 2.5em; /* More margin */
    font-size: 1.3em;
    width: 85%; /* Slightly wider button */
    align-self: center;
}

/* Hero Section */
.hero-banner {
    position: relative;
    height: 95vh; /* Taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    padding: 2.5em; /* Increased padding */
    max-width: 900px; /* Wider content */
}

.hero-main-title {
    font-size: 4em; /* Larger title */
    color: var(--color-white);
    margin-bottom: 0.6em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero-sub-title {
    font-size: 1.7em; /* Larger subtitle */
    color: var(--color-tertiary-accent); /* Changed to tertiary accent */
    margin-bottom: 2.5em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Section Common Styles */
section {
    padding: 3em 0; /* More consistent vertical padding */
}

.section-header {
    text-align: center;
    margin-bottom: 3em; /* More margin */
}

.section-heading {
    margin-bottom: 0.7em;
    font-size: 2.8em; /* Consistent heading size */
}

.section-description-text {
    font-size: 1.2em; /* Slightly larger description */
    max-width: 750px;
    margin: 0 auto;
    color: var(--color-text-main);
}

.section-description-centered {
    text-align: center;
    font-size: 1.2em;
    max-width: 850px;
    margin: 0 auto;
    color: var(--color-text-main);
}

/* Team Section */
.team-showcase-section {
    background-color: var(--color-light-bg); /* Lighter background */
}

.team-member-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5em; /* Increased gap */
}

.member-profile-card {
    background-color: var(--color-white);
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.member-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.profile-image {
    width: 100%;
    height: 280px; /* Slightly taller images */
    object-fit: cover;
    object-position: center;
}

.profile-details {
    padding: 1.8em; /* Increased padding */
}

.profile-name {
    font-size: 1.6em; /* Larger name */
    color: var(--color-neutral-dark);
    margin-bottom: 0.3em;
}

.profile-role {
    color: var(--color-primary-accent);
    font-weight: 600;
    margin-bottom: 0.6em;
    font-size: 1.05em;
}

.profile-specialty {
    font-size: 0.95em;
    color: #666;
}

/* About Section */
.about-us-section {
    background-color: var(--color-tertiary-accent); /* Changed to tertiary accent */
    color: var(--color-text-main);
}

.about-content-wrapper {
    max-width: 950px; /* Wider content */
    margin: 0 auto;
}

.about-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.8em; /* Increased gap */
    text-align: left;
    font-size: 1.15em; /* Slightly larger text */
}

.about-paragraph {
    color: var(--color-text-main);
}

/* Process Section (Podcast style) */
.methodology-section {
    background-color: var(--color-light-bg);
}

.method-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 2em; /* Increased padding */
    gap: 2em; /* Increased gap */
}

.method-image-container {
    flex-shrink: 0;
    width: 100%;
}

.method-image-container img {
    width: 100%;
    height: 320px; /* Taller image */
    object-fit: cover;
    border-radius: 10px; /* More rounded image corners */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.method-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.method-meta-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2em; /* Increased gap */
    font-size: 0.95em;
    color: #666;
    margin-bottom: 1.2em;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-link {
    color: var(--color-primary-accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.meta-link:hover {
    color: var(--color-neutral-dark);
}

.icon {
    width: 18px; /* Slightly larger icon */
    height: 18px;
    margin-right: 6px; /* Increased margin */
    fill: currentColor;
}

.icon-verified {
    width: 20px; /* Slightly larger */
    height: 20px;
    margin-left: 6px;
    vertical-align: middle;
}

.icon-clock {
    color: var(--color-primary-accent);
}

.meta-tag {
    background-color: rgba(var(--color-primary-accent), 0.2); /* Lighter background */
    color: var(--color-neutral-dark);
    font-weight: 600;
    padding: 0.3em 1em; /* More padding */
    border-radius: 25px; /* More rounded badge */
    margin-left: auto;
}

.method-title {
    font-size: 2.2em; /* Larger title */
    color: var(--color-neutral-dark);
    margin-bottom: 1em;
}

.method-description-text {
    font-size: 1.15em;
    color: var(--color-text-main);
    margin-bottom: 1.2em;
}

.author-details {
    display: flex;
    align-items: center;
    margin-top: 2em;
}

.author-name {
    font-size: 1.2em; /* Larger name */
    font-weight: 700;
    color: var(--color-neutral-dark);
    display: flex;
    align-items: center;
}

.author-title {
    color: var(--color-primary-accent);
    font-size: 0.95em;
}

/* Offerings Section */
.service-offerings-section {
    background-color: var(--color-tertiary-accent);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5em;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    width: 100%;
    height: 250px; /* Taller images */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image {
    transform: scale(1.08); /* More pronounced zoom */
}

.card-content-wrapper {
    padding: 1.8em;
}

.card-title {
    font-size: 1.4em; /* Larger title */
    color: var(--color-neutral-dark);
    margin-bottom: 0.8em;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: var(--color-primary-accent);
}

.card-description-text {
    font-size: 1em;
    color: #555;
}

/* Contact Section */
.contact-form-section {
    background-color: var(--color-neutral-light);
}

.contact-card-container {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5em; /* Increased padding */
    max-width: 850px;
    margin: 0 auto;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.2em; /* Increased gap */
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.form-field {
    margin-bottom: 0.6em;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.form-input {
    width: 100%;
    padding: 1.1em; /* More padding */
    border: 1px solid #ddd; /* Lighter border */
    border-radius: 10px; /* More rounded */
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    font-size: 1em;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary-accent);
    box-shadow: 0 0 0 4px rgba(107, 112, 92, 0.2); /* Custom glow */
}

.text-area-input {
    min-height: 150px; /* Taller textarea */
    resize: vertical;
}

.form-submit-area {
    text-align: center;
    margin-top: 2em;
}

/* Blog Section */
.blog-insights-section {
    background-color: var(--color-tertiary-accent);
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5em;
}

.blog-article-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.blog-article-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-image {
    width: 100%;
    height: 280px; /* Taller images */
    object-fit: cover;
}

.article-content {
    padding: 1.8em;
}

.article-title {
    font-size: 1.6em; /* Larger title */
    color: var(--color-neutral-dark);
    margin-bottom: 0.6em;
    transition: color 0.3s ease;
}

.blog-article-card:hover .article-title {
    color: var(--color-primary-accent);
}

.article-summary {
    font-size: 1.05em;
    color: #555;
}

/* Footer */
.site-footer {
    background-color: var(--color-neutral-dark);
    color: var(--color-white);
    padding: 2.5em 0; /* Increased padding */
}

.footer-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3em; /* Increased gap */
    padding-bottom: 2.5em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Slightly more visible separator */
}

.footer-info-column,
.footer-links-column,
.footer-contact-column,
.footer-newsletter-column {
    text-align: center;
}

.footer-brand-logo {
    display: inline-block;
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-size: 2.8em; /* Larger logo */
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.8px;
    margin-bottom: 0.8em;
}

.footer-tagline {
    font-size: 1.15em; /* Slightly larger tagline */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.8em;
    font-family: 'Lato', sans-serif;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 1.8em; /* Increased gap */
    margin-top: 1.8em;
}

.social-icon {
    color: var(--color-white);
    width: 32px; /* Slightly larger icons */
    height: 32px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--color-primary-accent);
    transform: translateY(-4px); /* More pronounced lift */
}

.footer-category-heading {
    font-size: 1.3em; /* Larger headings */
    font-weight: 700;
    margin-bottom: 1.2em;
    color: var(--color-white);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1em; /* Increased gap */
}

.footer-link-item,
.footer-email-link,
.legal-link-item {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Lato', sans-serif;
    font-size: 1.05em;
}

.footer-link-item:hover,
.footer-email-link:hover,
.legal-link-item:hover {
    color: var(--color-primary-accent);
    text-decoration: underline;
}

.footer-contact-text {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2em;
    font-family: 'Lato', sans-serif;
}

.footer-address-info {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95em;
    margin-top: 0.8em;
}

.footer-newsletter-text {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.8em;
    font-family: 'Lato', sans-serif;
}

.newsletter-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.newsletter-input-field {
    width: 100%;
    padding: 1em;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.18); /* Slightly more opaque */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Slightly more visible border */
    color: var(--color-white);
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    font-size: 1em;
}

.newsletter-input-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-field:focus {
    outline: none;
    border-color: var(--color-primary-accent);
    box-shadow: 0 0 0 4px rgba(107, 112, 92, 0.2);
}

.newsletter-submit-btn {
    width: 100%;
    font-size: 1.1em;
    padding: 14px 25px;
}

.footer-bottom-bar {
    padding-top: 2.5em;
    margin-top: 2.5em;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95em;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.legal-links-group {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    justify-content: center;
    margin-top: 1em;
}

/* Cookie Consent Popup */
.cookie-consent-popup {
    position: fixed;
    bottom: 25px; /* Slightly higher */
    left: 25px; /* Slightly more inwards */
    background-color: var(--color-white);
    padding: 30px; /* More padding */
    border-radius: 12px; /* More rounded */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* More prominent shadow */
    z-index: 2000;
    max-width: 400px; /* Slightly wider */
    display: none;
    flex-direction: column;
    gap: 1.2em;
    border: 1px solid #eee;
    animation: fadeIn 0.6s ease-out forwards; /* Slightly slower animation */
}

.cookie-consent-popup.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px); /* More movement */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-title {
    font-size: 1.6em; /* Larger title */
    font-weight: 700;
    color: var(--color-neutral-dark);
    text-align: center;
    margin-bottom: 0.8em;
}

.popup-text {
    font-size: 1em;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.2em;
}

.popup-link {
    color: var(--color-primary-accent);
    text-decoration: none;
    font-weight: 600;
}

.popup-link:hover {
    text-decoration: underline;
}

.popup-buttons {
    display: flex;
    gap: 1.2em;
    justify-content: center;
}

.popup-button-accept {
    background-color: var(--color-primary-accent);
    color: var(--color-white);
    padding: 12px 25px; /* More padding */
    border: none;
    border-radius: 8px; /* More rounded */
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    flex: 1;
}

.popup-button-accept:hover {
    background-color: var(--color-secondary-accent);
}

.popup-button-decline {
    background-color: var(--color-tertiary-accent); /* Changed to tertiary accent */
    color: var(--color-neutral-dark); /* Darker text */
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    flex: 1;
}

.popup-button-decline:hover {
    background-color: var(--color-secondary-accent);
}

/* --- Mobile Adaptations --- */
@media (min-width: 768px) {
    .nav-container {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    .brand-logo {
        flex-grow: 0;
        width: auto;
    }

    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-grow: 1;
        justify-content: flex-end;
        margin-left: auto;
        margin-top: 0;
    }

    .nav-action {
        display: block;
        margin-top: 0;
        margin-left: 2.5em; /* More space */
    }

    .hero-main-title {
        font-size: 4.5em; /* Larger on tablet */
    }

    .hero-sub-title {
        font-size: 2em;
    }

    .team-member-grid,
    .service-grid,
    .blog-articles-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
    }

    .method-card {
        flex-direction: row;
    }

    .method-image-container {
        width: 40%; /* Adjusted width */
    }

    .form-input-group {
        flex-direction: row;
    }

    .form-field {
        flex: 1;
    }

    /* Footer tablet adjustments */
    .footer-layout-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-info-column,
    .footer-links-column,
    .footer-contact-column,
    .footer-newsletter-column {
        text-align: left;
    }

    .social-media-links {
        justify-content: flex-start;
    }

    .newsletter-signup-form {
        flex-direction: row;
    }

    .newsletter-input-field {
        flex-grow: 1;
    }

    .newsletter-submit-btn {
        width: auto;
        flex-shrink: 0;
    }

    .footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .legal-links-group {
        flex-direction: row;
        gap: 1.8em;
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5em; /* Adjusted for larger screens */
    }

    h2 {
        font-size: 2.8em;
    }

    h3 {
        font-size: 2em;
    }

    .team-member-grid {
        grid-template-columns: repeat(4, 1fr); /* Four columns on desktop */
    }

    .service-grid {
        grid-template-columns: repeat(4, 1fr); /* Four columns on desktop */
    }

    .blog-articles-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for blog */
    }

    .method-image-container {
        width: 35%; /* Adjusted width */
    }

    /* Footer desktop adjustments */
    .footer-layout-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}