/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --card-border: #e4e4e7;
    --text-primary: #18181b;
    --text-secondary: #52525b;
    --accent-color: #48E86B; /* Zapier Orange-ish */
    --accent-hover: #39da5d;
    --link-color: #2563eb;
    --success-color: #10b981;
    --font-header: 'Libre Baskerville', serif;
    --font-body: 'Libre Franklin', sans-serif;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --tag-bg: #f4f4f5;
    --tag-text: #3f3f46;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2 {
    font-family: var(--font-header);
}

h3, h4, h5, h6 {
    font-family: var(--font-body);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Hero / Hero Header */
.hero-header {
    text-align: center;
    padding: 80px 0 60px;
}

.hero-header h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-header p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #89fa8a;
}

.dot-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #89FA8A;
    box-shadow: 0 0 0 0 rgba(31, 255, 165, 0.6);
    animation: dotPulse 2s infinite;
    margin-right: 5px;
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 255, 113, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(31, 255, 98, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(31, 255, 102, 0);
    }
}

/* Pills navigation */
.nav-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pill {
    padding: 8px 16px;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    background: #fff;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

/* .pill:hover removed as it's no longer clickable */

/* Search Bar */
.search-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    font-size: 1rem;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    border-color: var(--text-secondary);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

/* Separator */
.section-divider {
    border-top: 1px solid #e5e7eb;
    margin: 60px auto 60px;
    position: relative;
    max-width: 800px;
}

.divider-text {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Category Cards (Big ones) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.category-card {
    background: #f9fafb;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.category-card:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.category-icon {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.category-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.category-count {
    display: inline-block;
    background: #e5e7eb;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.active-category {
    background: #18181b; /* Dark bg for active */
    color: #fff;
    border-color: #18181b;
}
.active-category .category-title { color: #fff; }
.active-category .category-icon { color: #fff; }
.active-category:hover { background: #27272a; }


/* App Grid */
.apps-header {
    margin-bottom: 24px;
    text-align: center;
}

.apps-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.connections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* Wider cards */
    gap: 40px;
    max-width: 900px;
    margin: 40px 0 0 200px;
} 

.app-card {
    display: flex;
    gap: 16px;
    padding: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.app-card:hover {
   opacity: 0.8;
}

.app-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.app-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.app-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* Detail Page Styles */
.detail-header-bg {
    background: #10b981; /* Default, will be overridden */
    height: 200px;
    width: 100%;
}

.detail-container {
    max-width: 1000px;
    margin: -100px auto 0; /* Overlap header */
    padding: 0 20px 60px;
    position: relative;
}

.app-header-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--card-border);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.big-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.platform-icon-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.platform-icon-wrapper.large {
    width: 68px;
    height: 68px;
    padding: 12px;
}

.platform-icon-wrapper.small {
    width: 48px;
    height: 48px;
    padding: 8px;
    border-radius: 8px;
}

.platform-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.app-header-content {
    flex: 1;
}

.app-header-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.app-meta {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Tabs like "Integrations | Help" */
.tab-nav {
    display: flex;
    gap: 32px;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-link {
    padding: 12px 4px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Detail Content Layout */
.detail-content-grid {
    display: flex;
    gap: 60px;
    margin-top: 20px;
}

.detail-spacer {
    flex: 1;
}

.detail-main-content {
    flex: 7;
}

.detail-sidebar {
    flex: 3;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.about-section-container {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.about-logo {
    margin-top: 4px;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

@media (max-width: 1024px) {
    .detail-content-grid {
        flex-direction: column;
        gap: 40px;
    }

    .detail-spacer {
        display: none;
    }

    .detail-main-content {
        width: 100%;
    }

    .detail-sidebar {
        position: static;
        width: 100%;
        order: 2; /* Ensure it stays below main content */
    }
    
    .container {
        padding: 0 20px 40px;
    }
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .detail-content-grid h2 {
        font-size: 1.75rem !important;
    }
    
    .detail-content-grid {
        margin-top: 40px;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 380px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    font-size: 17px;
}
.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: #3b82f6; /* Google Blue-ish */
    color: #fff;
}
.btn-secondary:hover {
    background-color: #2563eb;
}

.btn-google {
    background-color: #4285F4;
    color: #fff;
    padding: 2px; /* Small padding to allow the white square to sit slightly inside or flush */
    position: relative;
    border: none;
    border-radius: 8px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-google:hover {
    background-color: #3367D6;
}

.btn-google .google-icon-wrapper {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    flex-shrink: 0;
}

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

.btn-google .btn-text {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 17px;
    padding-right: 42px; /* Offset the icon width to truly center the text */
}

/* Actions Section */
.actions-section {
    margin-top: 80px;
    text-align: center;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background-color: rgba(73, 97, 246, 0.1); /* Light purple-blue background */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
}

.bottom-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-body); /* Matches the image font style more than serif */
}

.bottom-cta-section .cta-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.actions-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.t-a-description {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

.t-a-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.card-simple {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.card-simple h3 {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.card-simple p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--card-border);
    padding: 4px;
    overflow: hidden;
}

.icon-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}




.badge-pill {
    font-size: 0.75rem;
    padding: 2px 8px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 10px;
    margin-left: auto;
}



/* ===== SITE HEADER STYLES ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 74px;
    z-index: 3000;
}

.site-header-inner {
    position: relative;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header-inner .logo,
.site-header-inner .auth-actions {
    position: relative;
    z-index: 1;
}

.site-header .logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-family: 'Libre Baskerville', serif;
    color: #333;
    text-decoration: none;
}

.site-header .logo img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* Glassy, pill-shaped header background */
.header-blur {
    position: absolute;
    /* leave some breathing room inside the header for a pill silhouette */
    top: 8px;
    bottom: 8px;
    left: 12px;
    /* reduce the right inset so the glassy header background sits closer to the actions
                    (decreases the gap between the pill background and the "Get started" button) */
    right: 18px;
    border-radius: 9999px;
    background: color-mix(in srgb, #ffffff 14%, transparent);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    /* subtle glass layering (inspired by the reference) */
    background:
        linear-gradient(135deg, rgba(137, 250, 138, 0), rgba(137, 250, 138, 0), rgba(137, 250, 138, 0), rgba(137, 250, 138, 0.4)),
        color-mix(in srgb, #ffffff 14%, transparent);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.70),
        inset -2px -2px 0 -2px rgba(255, 255, 255, 0.60),
        inset -3px -8px 1px -6px rgba(255, 255, 255, 0.40),
        inset -0.3px -1px 4px 0 rgba(0, 0, 0, 0.12),
        inset -1.5px 2.5px 0 -2px rgba(0, 0, 0, 0.18),
        inset 0 3px 4px -2px rgba(0, 0, 0, 0.18),
        0 6px 16px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    z-index: 0;
    /* start invisible; we'll fade this in as the user scrolls */
    opacity: 0;
    /* start slightly blurred — JS will toggle this to 0 after a threshold scroll amount */
    filter: blur(5px);
    /* animate opacity and filter (blurs the element itself) for a smooth glassy reveal
            NOTE: backdrop-filter (the blur of what's behind this element) remains static in CSS and will NOT be changed by JS */
    transition: opacity 260ms cubic-bezier(.2, .9, .2, 1), filter 260ms cubic-bezier(.2, .9, .2, 1);
    will-change: opacity, filter;
}

/* When scrolled past the threshold the pill should be visible and sharp */
.header-blur[data-scrolled="true"] {
    filter: blur(0px);
    opacity: 1;
}

/* Auth actions */
.auth-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    font-family: 'Libre Franklin', sans-serif;
}

.header-plain-action {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.9);
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    transition: opacity .15s ease, color .15s ease;
    text-decoration: none;
}

.header-plain-action:hover {
    opacity: 0.9;
    text-decoration: none;
}

.header-plain-action:focus-visible {
    outline: 2px solid rgba(58, 180, 72, 0.9);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Glassy signup button */
.signup-button-header-style {
    background:
        linear-gradient(135deg, rgba(137, 250, 138, 1), rgba(137, 250, 138, 1)),
        color-mix(in srgb, #ffffff 14%, transparent);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .15s;
    text-decoration: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.70),
        inset -2px -2px 0 -2px rgba(255, 255, 255, 0.60),
        inset -3px -8px 1px -6px rgba(255, 255, 255, 0.40),
        inset -0.3px -1px 4px 0 rgba(0, 0, 0, 0.12),
        inset -1.5px 2.5px 0 -2px rgba(0, 0, 0, 0.18),
        inset 0 3px 4px -2px rgba(0, 0, 0, 0.18),
        0 6px 16px rgba(0, 0, 0, 0.08);
}

.signup-button-header-style:hover {
    background:
        linear-gradient(135deg, rgba(137, 250, 138, 0.9), rgba(137, 250, 138, 0.9)),
        color-mix(in srgb, #ffffff 14%, transparent);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.70),
        inset -2px -2px 0 -2px rgba(255, 255, 255, 0.60),
        inset -3px -8px 1px -6px rgba(255, 255, 255, 0.40),
        inset -0.3px -1px 4px 0 rgba(0, 0, 0, 0.12),
        inset -1.5px 2.5px 0 -2px rgba(0, 0, 0, 0.18),
        inset 0 3px 4px -2px rgba(0, 0, 0, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

.signup-button-header-style:active {
    transform: translateY(1px);
}

.signup-button-header-style .arrow {
    font-size: 16px;
    line-height: 1.2;
}

/* ===== SITE FOOTER STYLES ===== */
.footer {
    width: 90%;
    max-width: 800px;
    font-family: 'Libre Franklin', sans-serif;
    text-align: center;
    font-weight: 300;
    font-size: 14px;
    color: #999;
    margin: 48px auto 32px auto;
    border-top: 1px solid #eeeeee;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0px)) 20px;
}

.footer-content {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-nav-extra {
    display: flex;
    gap: 30px;
}

.footer-nav-extra button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #333333;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.footer-nav-extra button:hover {
    opacity: 0.7;
}

.footer-main-row {
    justify-content: space-between;
    gap: 40px;
}

.footer-social-and-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-secondary-row {
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-family: 'Libre Baskerville', serif;
    color: #333;
    text-decoration: none;
    padding-bottom: 1px;
}

.footer-logo:hover {
    opacity: 0.8;
    text-decoration: none;
}

.footer-logo img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.footer-nav a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social img {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    color: #333333;
    font-size: 15px;
    text-align: center;
}

.mobile-copyright {
    display: none;
}

.powered-by-link {
    color: #3ADA5C;
    text-decoration: none;
}

.powered-by-link:hover {
    text-decoration: underline;
}

/* ===== PAGE LAYOUT ADJUSTMENTS ===== */
/* Push main content below fixed header */
body {
    padding-top: 80px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 700px) {
    .divider-text {
        font-size: 0.8rem; /* Slightly smaller to fit better on very narrow screens */
    }

    .connections-grid {
        grid-template-columns: 1fr;
        margin-left: 80px;
        gap: 40px;
        padding: 0 20px;
    }

    .auth-actions .login-link {
        display: none;
    }

    .footer {
        padding: 15px 0 !important;
        width: 90% !important;
        box-sizing: border-box;
        transform: none !important;
        max-width: none !important;
        margin: 24px auto 24px auto !important;
        position: static !important;
    }

    .footer-content {
        gap: 16px !important;
        padding: 0 20px !important;
    }

    .footer-row {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .footer-main-row {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        gap: 12px !important;
    }

    .footer-secondary-row {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        width: 100%;
        gap: 16px !important;
    }

    .footer-social-and-nav {
        flex-direction: row !important;
        gap: 20px !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
    }

    .footer-left {
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .footer-nav-extra {
        gap: 16px !important;
    }

    .footer-nav {
        gap: 16px !important;
        justify-content: flex-start !important;
    }

    .footer-social {
        gap: 12px !important;
    }

    .footer-nav a {
        font-size: 14px;
    }

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

    .mobile-copyright {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-copyright span {
        font-size: 14px;
        color: #333333;
    }

    .footer-secondary-row {
        align-items: center !important;
    }

    .footer-copyright {
        text-align: center !important;
    }
}
