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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #1f2937;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 58px;
    width: auto;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav a {
    color: #3f3f46;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #2563eb;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    transition: 0.3s ease;
}

.lang-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.lang-btn.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    cursor: default;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.menu-toggle:hover {
    border-color: #2563eb;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
    transition: 0.3s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #fff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f9fafb;
}

.btn-white {
    background: #fff;
    color: #111827;
}

/* HERO */
.hero-medical {
    background: #f2f2f2;
    padding: 90px 0 70px;
}

.hero-medical-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    padding-right: 20px;
}

.hero-topline,
.page-topline,
.panel-topline,
.section-mini-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.hero-left h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 20px;
    color: #4b5563;
    max-width: 650px;
    margin-bottom: 32px;
}

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

.hero-right {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    max-width: 620px;
    margin-left: auto;
}

.hero-bg-box {
    position: absolute;
    left: -25px;
    bottom: -25px;
    width: 100%;
    height: 100%;
    background: #cfd8e8;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 640px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* BRANDS */
.brands-section,
.brands-page-section {
    background: #efefef;
    padding: 55px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    text-align: center;
}

.brand-item {
    background: transparent;
    padding: 20px 10px;
}

.brand-item img {
    max-width: 170px;
    max-height: 75px;
    margin: 0 auto 10px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-item span {
    display: block;
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

/* HOME CARDS */
.intro-cards {
    background: #fff;
    padding: 90px 0;
}

.section-head {
    margin-bottom: 45px;
}

.section-head h2,
.why-left h2,
.about-content h2,
.contact-info h2,
.contact-form-box h2,
.contact-card h2,
.form-card h2,
.map-wide-head h2,
.corporate-intro-right h2,
.corporate-vision-card h2,
.corporate-process-left h2 {
    font-size: 46px;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-head p,
.why-left p,
.about-content p,
.contact-info p,
.contact-form-box p {
    font-size: 18px;
    color: #6b7280;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.intro-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.intro-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 14px;
}

.intro-card p {
    color: #6b7280;
    font-size: 16px;
}

/* WHY */
.why-section {
    padding: 90px 0;
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.why-list {
    margin-top: 24px;
}

.why-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: #374151;
    font-size: 17px;
}

.why-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2563eb;
    position: absolute;
    left: 0;
    top: 9px;
}

.why-right {
    display: grid;
    gap: 20px;
}

.stat-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.stat-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #111827;
}

.stat-box p {
    color: #6b7280;
}

/* CTA */
.cta-section {
    padding: 0 0 90px;
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg, #111827 0%, #1d4ed8 100%);
    color: #fff;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta-box h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 17px;
    color: rgba(255,255,255,0.86);
}

/* PAGE HERO */
.page-hero {
    padding: 80px 0 36px;
    background: #f2f2f2;
}

.page-hero h1 {
    font-size: 56px;
    line-height: 1.08;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero p {
    max-width: 860px;
    font-size: 19px;
    color: #6b7280;
}

.contact-hero-minimal {
    padding-bottom: 24px;
}

.corporate-hero {
    padding-bottom: 50px;
}

/* PRODUCTS */
.products-section {
    padding: 90px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
}

.product-content p {
    color: #6b7280;
    font-size: 16px;
}

/* CONTACT */
.contact-minimal-section {
    padding: 0 0 90px;
    background: #ffffff;
}

.contact-minimal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-card,
.form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    height: 100%;
}

.contact-card h2,
.form-card h2 {
    font-size: 46px;
    line-height: 1.1;
    color: #111827;
    margin: 0 0 24px 0;
    font-weight: 800;
}

.contact-info-list {
    margin-top: 0;
    display: grid;
    gap: 22px;
}

.contact-info-row {
    padding-bottom: 18px;
    border-bottom: 1px solid #eef2f7;
}

.contact-info-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-info-value,
.contact-info-value a {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
}

.contact-info-value a:hover {
    color: #2563eb;
}

.contact-form {
    margin-top: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 700;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 16px;
    outline: none;
    background: #fff;
    transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-btn {
    width: 100%;
}

.form-alert {
    margin: 0 0 18px 0;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
}

.success-alert {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.error-alert {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.honeypot-field {
    display: none !important;
}

.map-wide-section {
    margin-top: 32px;
}

.map-wide-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.map-frame {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 360px;
}

.map-frame-wide iframe {
    height: 440px;
}

/* CORPORATE */
.corporate-section {
    padding: 10px 0 90px;
    background: #ffffff;
}

.corporate-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: center;
}

.corporate-image-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.corporate-main-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 20px;
}

.corporate-intro-right p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 18px;
}

.corporate-highlight-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.corporate-highlight-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
}

.corporate-highlight-box h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 10px;
}

.corporate-highlight-box p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 0;
}

.corporate-vision-section {
    padding: 0 0 90px;
    background: #ffffff;
}

.corporate-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.corporate-vision-card {
    background: linear-gradient(135deg, #111827 0%, #1d4ed8 100%);
    border-radius: 28px;
    padding: 38px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.corporate-vision-card h2 {
    color: #ffffff;
}

.corporate-vision-card p {
    font-size: 17px;
    color: rgba(255,255,255,0.86);
}

.vision-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #bfdbfe;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.corporate-values-section {
    padding: 0 0 90px;
    background: #f8fafc;
}

.corporate-head-center {
    text-align: center;
}

.corporate-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.value-number {
    font-size: 14px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 10px;
}

.value-card p {
    color: #6b7280;
    font-size: 16px;
}

.corporate-process-section {
    padding: 90px 0;
    background: #ffffff;
}

.corporate-process-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: start;
}

.corporate-process-left p {
    font-size: 18px;
    color: #6b7280;
}

.corporate-process-right {
    display: grid;
    gap: 18px;
}

.process-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
}

.process-item h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 10px;
}

.process-item p {
    font-size: 16px;
    color: #6b7280;
}

.corporate-cta-section {
    padding: 0 0 90px;
    background: #ffffff;
}

.corporate-cta-box {
    background: linear-gradient(135deg, #111827 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.corporate-cta-box h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.corporate-cta-box p {
    font-size: 17px;
    color: rgba(255,255,255,0.86);
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #fff;
    margin-top: 0;
    padding-top: 56px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
}

.footer-brand {
    max-width: 520px;
}

.footer-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand-text {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.86);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-list {
    display: grid;
    gap: 16px;
}

.footer-contact-list li {
    display: grid;
    gap: 4px;
}

.footer-contact-label {
    font-size: 12px;
    font-weight: 700;
    color: #93c5fd;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.footer-contact-value,
.footer-contact-value a,
.footer-contact-list a {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.7;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 18px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.70);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-left h1 {
        font-size: 48px;
    }

    .page-hero h1 {
        font-size: 44px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid,
    .products-grid,
    .corporate-values-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .contact-minimal-grid,
    .corporate-intro-grid,
    .corporate-vision-grid,
    .corporate-process-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .site-nav {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .header-wrap {
        min-height: 82px;
        padding: 14px 0;
    }

    .site-logo img {
        max-height: 46px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        padding: 18px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
        margin-left: 0;
    }

    .site-header.menu-open .nav-panel {
        display: flex;
    }

    .site-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .site-nav a {
        width: 100%;
        font-size: 15px;
        padding: 4px 0;
    }

    .lang-switch {
        width: 100%;
        padding-top: 6px;
        border-top: 1px solid #eef2f7;
    }

    .lang-btn {
        min-width: 52px;
    }
}

@media (max-width: 768px) {
    .hero-medical {
        padding: 56px 0 48px;
    }

    .hero-medical-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-left p,
    .page-hero p,
    .corporate-intro-right p,
    .corporate-process-left p {
        font-size: 17px;
    }

    .hero-image {
        height: 360px;
    }

    .corporate-main-image {
        height: 360px;
    }

    .page-hero h1,
    .section-head h2,
    .why-left h2,
    .contact-card h2,
    .form-card h2,
    .corporate-intro-right h2,
    .corporate-vision-card h2,
    .corporate-process-left h2,
    .corporate-cta-box h2,
    .cta-box h2 {
        font-size: 32px;
    }

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

    .cta-box,
    .corporate-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row,
    .corporate-highlight-grid {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .form-card,
    .map-wide-card,
    .corporate-image-card,
    .corporate-vision-card,
    .corporate-cta-box {
        padding: 24px;
        border-radius: 22px;
    }

    .map-frame-wide iframe {
        height: 300px;
    }

    .site-footer {
        padding-top: 42px;
    }

    .footer-top {
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-logo {
        max-height: 40px;
    }

    .footer-brand-text,
    .footer-links a,
    .footer-contact-value,
    .footer-contact-list a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0 22px;
    }

    .footer-bottom-links {
        gap: 14px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        width: 92%;
    }

    .header-wrap {
        min-height: 74px;
    }

    .site-logo img {
        max-height: 40px;
    }

    .menu-toggle {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .page-hero h1,
    .contact-card h2,
    .form-card h2,
    .corporate-intro-right h2,
    .corporate-vision-card h2,
    .corporate-process-left h2 {
        font-size: 28px;
    }

    .footer-badges {
        gap: 8px;
    }

    .footer-badge {
        font-size: 11px;
        padding: 7px 10px;
    }
}


.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.88);
    transition: 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(37,99,235,0.22);
    border-color: rgba(96,165,250,0.40);
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-social-link span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .footer-social {
        gap: 10px;
    }

    .footer-social-link {
        padding: 10px 12px;
    }

    .footer-social-link span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social-link {
        width: 100%;
        justify-content: center;
    }
}