.site-body {
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.ukurbansole-app {
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;

    /* Margin framing logic */
    margin: 30px 40px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
}

/* Base Component Reset via specific classes - STRICT NO * RULE */
.page-loader,
.top-ad-notice,
.main-header,
.header-container,
.hero-section,
.hero-container,
.about-section,
.about-container,
.features-section,
.features-grid,
.why-us-section,
.why-container,
.testimonials-section,
.testimonials-container,
.faq-section,
.faq-container,
.site-footer,
.footer-container,
.footer-bottom,
.cookie-popup,
.modal-overlay,
.logo-wrapper,
.desktop-nav,
.nav-list,
.nav-item,
.nav-link,
.primary-button,
.secondary-button,
.hamburger-btn,
.hamburger-icon,
.mobile-nav-overlay,
.mobile-nav-content,
.mobile-nav-header,
.mobile-nav-body,
.mobile-nav-list,
.mobile-nav-item,
.mobile-nav-link,
.loader-content,
.loader-title,
.loader-bar,
.ad-text,
.logo-link,
.hero-title,
.hero-description,
.hero-eyebrow,
.accent-text,
.section-title,
.section-text,
.block-title,
.feature-card,
.feature-name,
.feature-desc,
.why-title,
.why-text,
.testimonial-text,
.author-name,
.author-meta,
.faq-question,
.faq-answer-text,
.footer-logo,
.footer-tagline,
.footer-col-title,
.footer-link,
.address-text,
.important-notice,
.ad-commission-note,
.copyright-text,
.cookie-title,
.cookie-desc,
.hero-image,
.why-shoe-img,
.feature-img,
.main-stack,
.image-stack,
.hero-image-wrapper,
.section-image-side,
.section-text-side,
.why-icon-box,
.faq-answer,
.cta-banner,
.footer-brand-section,
.footer-links-grid,
.footer-col,
.footer-links-list,
.footer-li-item,
.contact-details,
.contact-line,
.modal-container,
.modal-close-btn,
.modal-content,
.cookie-text-box,
.cookie-actions,
.cookie-btn,
.contact-bold,
.contact-details,
.contact-line {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 0.2em;
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: loader-pulse 1.5s infinite ease-in-out;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background-color: #eee;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    animation: loading-bar 2s infinite ease-in-out;
}

/* Top Ad Notice */
.top-ad-notice {
    background-color: #fafafa;
    border-bottom: 1px solid #eee;
    padding: 12px 20px;
    text-align: center;
}

.ad-text {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Header & Navigation */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    color: #1a1a1a;
    letter-spacing: 0.1em;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a1a1a;
    transition: width 0.4s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.primary-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    border: 1px solid #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.primary-button:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.secondary-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 1px solid #1a1a1a;
    cursor: pointer;
}

.dark-btn {
    background-color: #111;
    border-color: #111;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: right 0.4s ease;
    visibility: hidden;
}

.mobile-nav-overlay.active {
    right: 0;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    position: relative;
    transition: all 0.4s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    left: 0;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    bottom: -8px;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 80px 40px;
    background: radial-gradient(circle at 70% 50%, #f0f0f0 0%, #ffffff 50%);
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-eyebrow {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #666666;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.accent-text {
    color: #666;
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.08));
    animation: hero-float 6s infinite ease-in-out;
}

.hero-image-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
}

/* About Section */
.about-section {
    padding: 120px 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.main-stack {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-accent-box {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-color: #f1f1f1;
    z-index: -1;
    border-radius: 8px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.block-title {
    display: block;
    color: #666666;
}

.section-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #666666;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
}

/* Features Grid */
.features-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

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

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #1a1a1a;
    margin: 0 auto;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.4s ease;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card.highlighted {
    background-color: #111;
    color: #ffffff;
}

.feature-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.feature-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 0.95rem;
    color: #666666;
}

.feature-card.highlighted .feature-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Why Us Section */
.why-us-section {
    padding: 120px 40px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-list {
    list-style: none;
    margin-top: 50px;
}

.why-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.why-icon-box {
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

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

.why-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.why-text {
    color: #666666;
}

.image-glass-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.why-shoe-img {
    width: 100%;
    border-radius: 12px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 40px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background-color: #fafafa;
    border-radius: 12px;
}

.stars-row {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
}

.author-name {
    display: block;
    font-weight: 700;
}

.author-meta {
    font-size: 0.85rem;
    color: #666666;
}

/* FAQ Section */
.faq-section {
    padding: 100px 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer-text {
    padding-bottom: 25px;
    color: #666666;
}

/* Final CTA */
.final-cta {
    padding: 80px 40px;
}

.cta-banner {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f1f1f1;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    margin-bottom: 40px;
    color: #666666;
}

/* Footer Section */
.site-footer {
    background-color: #f8f8f8;
    padding: 100px 40px 40px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #666666;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 25px;
}

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

.footer-li-item {
    margin-bottom: 15px;
}

.footer-link {
    text-decoration: none;
    color: #666666;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #111;
}

.address-text {
    color: #666666;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.footer-notice-block {
    text-align: center;
    margin-bottom: 30px;
}

.important-notice {
    font-size: 0.85rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.4;
}

.ad-commission-note {
    font-size: 0.8rem;
    color: #999;
}

.copyright-line {
    text-align: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: #999;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.cookie-popup.hidden {
    transform: translateY(200%);
    visibility: hidden;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-title {
    margin-bottom: 10px;
}

.cookie-desc {
    font-size: 0.95rem;
    color: #666666;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 4000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-overlay.hidden {
    display: none;
}

.modal-container {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    padding: 60px 40px;
    border-radius: 12px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* Scroll Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes loading-bar {
    to {
        left: 100%;
    }
}

@keyframes loader-pulse {
    50% {
        opacity: 0.5;
    }
}

@keyframes hero-float {
    50% {
        transform: translateY(-20px);
    }
}

/* --- Responsive Design System (STRICT Class-Only) --- */

/* 1. Large Tablets & Small Laptops (max-width: 1200px) */
@media (max-width: 1200px) {

    .header-container,
    .hero-container,
    .about-container,
    .features-grid,
    .why-container,
    .testimonials-container,
    .faq-container,
    .footer-container,
    .cta-banner {
        max-width: 95%;
        padding-left: 20px;
        padding-right: 20px;
    }

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

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

/* 2. Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

/* 3. Mobile Devices & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .ukurbansole-app {
        margin: 10px;
        width: auto;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    /* Header & Navigation Fixes */
    .header-container {
        padding: 12px 15px;
    }

    .logo-link {
        font-size: 1.25rem;
    }

    .hamburger-btn {
        padding: 5px;
    }

    .main-header {
        position: fixed;
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        border-radius: 12px 12px 0 0;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .desktop-nav {
        display: none !important;
    }

    .header-cta {
        display: none !important;
    }

    .hamburger-btn {
        display: block !important;
    }

    /* Hero Section Fixes */
    .hero-section {
        padding: 100px 20px 60px;
        text-align: center;
    }

    /* More top padding for fixed header */
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-description {
        margin: 0 auto 30px;
        font-size: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    }

    /* About Section Fixes */
    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .section-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

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

    /* Features Section Fixes */
    .features-section {
        padding: 60px 20px;
    }

    .section-header-centered {
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px;
    }

    /* Why Us Fixes */
    .why-us-section {
        padding: 60px 20px;
    }

    .why-container {
        flex-direction: column;
        gap: 50px;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .image-glass-card {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    /* Testimonials Fixes */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px;
    }

    /* FAQ Fixes */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 15px 0;
    }

    /* Final CTA Fixes */
    .final-cta {
        padding: 60px 20px;
    }

    .cta-banner {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    /* Footer Fixes - Perfect Centering */
    .site-footer {
        padding: 60px 20px 40px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .footer-brand-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-tagline {
        margin: 0 auto 30px;
        width: 100%;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 40px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-links-list {
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-li-item {
        margin-bottom: 15px;
        width: 100%;
    }

    .contact-details {
        align-items: center;
        margin-bottom: 0;
    }

    .contact-line {
        text-align: center;
        margin-bottom: 10px;
        width: 100%;
        word-break: break-all;
    }

    /* Prevent long email overflow */
    .address-text {
        text-align: center;
        width: 100%;
    }

    /* Cookie Popup */
    .cookie-popup {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 20px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* 4. Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .primary-button {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .logo-link {
        font-size: 1.25rem;
    }
}