/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Albert Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button {
    font-family: 'Albert Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
}

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

ul {
    list-style: none;
}

.hidden {
    display: none !important;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B1F3B;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #00BFA6;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #0B1F3B;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00BFA6;
}

.nav-btn {
    background-color: #0B1F3B;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #1a3a5f;
}

.mobile-menu-btn {
    display: block;
    color: #0B1F3B;
    padding: 0.5rem;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    color: #0B1F3B;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #00BFA6;
}

.mobile-nav-btn {
    width: 100%;
    margin-top: 1rem;
    background-color: #0B1F3B;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.mobile-nav-btn:hover {
    background-color: #1a3a5f;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: #f8f9fb;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 66.666667%;
    height: 100%;
    pointer-events: none;
    display: none;
}

.hero-bg svg {
    width: 100%;
    height: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0B1F3B;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0B1F3B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: #0B1F3B;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #1a3a5f;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary .btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(0.25rem);
}

.btn-secondary {
    background-color: white;
    color: #0B1F3B;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1.125rem;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: #0B1F3B;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #d1d5db;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0B1F3B;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #4b5563;
}

.hero-visual {
    display: none;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-bg {
        display: block;
    }

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

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-visual {
        display: block;
    }
}

/* Services Section */
.services {
    padding: 4rem 1.5rem;
    background-color: white;
}

.services-header {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B1F3B;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1rem;
    color: #4b5563;
    margin-top: 1rem;
    line-height: 1.6;
}

.section-title-white {
    color: white;
}

.section-text-light {
    color: #d1d5db;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-featured {
    background-color: #0B1F3B;
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.featured-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 20rem;
    height: 20rem;
    background-color: #00BFA6;
    border-radius: 9999px;
    filter: blur(96px);
    opacity: 0.1;
}

.featured-content {
    position: relative;
    z-index: 10;
}

.featured-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-text {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.featured-list {
    margin-bottom: 2rem;
}

.featured-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.list-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: #00BFA6;
    border-radius: 9999px;
    flex-shrink: 0;
}

.featured-btn {
    position: relative;
    z-index: 10;
    align-self: flex-start;
    background-color: white;
    color: #0B1F3B;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-btn:hover {
    background-color: #f3f4f6;
}

.featured-btn .btn-icon {
    transition: transform 0.3s ease;
}

.featured-btn:hover .btn-icon {
    transform: translate(0.125rem, -0.125rem);
}

.services-small-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.service-card-white {
    background-color: #f8f9fb;
}

.service-card-white:hover {
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card-accent {
    background: linear-gradient(135deg, #00BFA6 0%, #00a591 100%);
    color: white;
}

.service-card-dark {
    background-color: #0B1F3B;
    color: white;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-icon-white {
    background-color: white;
    color: #0B1F3B;
}

.service-card-white:hover .service-icon-white {
    background-color: #0B1F3B;
    color: white;
}

.service-icon-accent {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-icon-dark {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B1F3B;
    margin-bottom: 0.5rem;
}

.service-title-dark {
    color: white;
}

.service-description {
    color: #4b5563;
    font-size: 0.875rem;
}

.service-description-accent {
    color: rgba(255, 255, 255, 0.9);
}

.service-description-dark {
    color: #d1d5db;
}

@media (min-width: 640px) {
    .services-small-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .services {
        padding: 5rem 1.5rem;
    }

    .services-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1.125rem;
    }

    .featured-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .services {
        padding: 6rem 1.5rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .service-featured {
        min-height: 700px;
    }

    .featured-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 4rem 1.5rem;
    background-color: #0B1F3B;
    color: white;
}

.benefits-header {
    max-width: 42rem;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon > div {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background-color: #00BFA6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.icon-check {
    width: 16px;
    height: 16px;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-title {
    color: #00BFA6;
}

.benefit-description {
    color: #d1d5db;
    line-height: 1.75;
}

.benefits-cta {
    padding-top: 3rem;
    border-top: 1px solid #374151;
}

.benefits-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.benefits-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-accent {
    background-color: #00BFA6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-accent:hover {
    background-color: #00a591;
}

.btn-accent .btn-icon {
    transition: transform 0.3s ease;
}

.btn-accent:hover .btn-icon {
    transform: translateX(0.25rem);
}

@media (min-width: 768px) {
    .benefits {
        padding: 5rem 1.5rem;
    }

    .benefits-header {
        margin-bottom: 3rem;
    }

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

    .benefits-cta-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .benefits {
        padding: 6rem 1.5rem;
    }

    .benefits-header {
        margin-bottom: 4rem;
    }
}

/* About Section */
.about {
    padding: 4rem 1.5rem;
    background-color: #f8f9fb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #00BFA6;
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-text-content {
    margin-bottom: 2rem;
}

.about-text-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-quote {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0B1F3B;
}

.about-quote p {
    font-weight: 600;
    color: #0B1F3B;
    font-size: 1.25rem;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon-wrapper {
    flex-shrink: 0;
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background-color: #0B1F3B;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B1F3B;
    margin-bottom: 0.5rem;
}

.value-description {
    color: #4b5563;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .about {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about {
        padding: 6rem 1.5rem;
    }

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

/* Contact Section */
.contact {
    padding: 3rem 0.75rem;
    background-color: #f8f9fb;
}

.contact-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0.75rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B1F3B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info > div {
    margin-bottom: 1.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 1rem;
    color: #0B1F3B;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: #00BFA6;
}

.contact-address {
    font-size: 1rem;
    color: #0B1F3B;
    line-height: 1.75;
}

.contact-social {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #0B1F3B;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #00BFA6;
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 0.875rem;
    border-radius: 0.5rem;
    background-color: #f8f9fb;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.875rem;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0B1F3B;
    background-color: white;
}

.form-textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    max-width: 100%;
    background-color: #0B1F3B;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-sizing: border-box;
}

.form-submit:hover {
    background-color: #1a3a5f;
}

.form-submit .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon {
    transform: translateX(0.25rem);
}

.contact-info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
    width: 100%;
}

.info-box {
    background-color: white;
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    width: 100%;
    box-sizing: border-box;
}

.info-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B1F3B;
    margin-bottom: 0.75rem;
}

.info-box-text {
    color: #4b5563;
    margin-bottom: 1rem;
}

.info-box-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00BFA6;
    font-weight: 500;
}

.info-icon {
    width: 18px;
    height: 18px;
}

@media (min-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .contact {
        padding: 3.5rem 1rem;
    }

    .contact-card {
        padding: 1.75rem 1rem;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
    }

    .contact-form {
        gap: 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.875rem 1rem;
    }

    .form-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-info-boxes {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .contact-info > div {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact {
        padding: 4rem 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .form-input,
    .form-textarea {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .form-submit {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .info-box {
        padding: 2rem;
    }

    .contact-info-boxes {
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (min-width: 768px) {
    .contact {
        padding: 5rem 1.5rem;
    }

    .contact-info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 3rem 2.5rem;
    }

    .contact-link {
        font-size: 1.125rem;
    }

    .contact-address {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: 6rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .contact-title {
        font-size: 3rem;
    }

    .contact-card {
        padding: 3rem 4rem;
    }

    .contact-info {
        margin-bottom: 3rem;
    }

    .contact-info > div {
        margin-bottom: 2rem;
    }
}

/* Footer */
.footer {
    background-color: #0a1628;
    color: white;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-brand-subtitle {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-brand-text {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00BFA6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #00BFA6;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom-content {
        flex-direction: row;
    }
}
