:root {
    --primary: #502a89;
    /* Profesjonalny, zaufany, korporacyjny niebieski */
    --primary-hover: #351565;
    --secondary: #0f172a;
    /* Głęboki granat do tekstów */
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Wyraźniejsze półcienie */
    --shadow-lg: 0 20px 40px rgba(29, 78, 216, 0.12);
    /* Subtelna głębia z kolorem */
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    position: relative;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #f8fafc;
    /* Przywrócenie jasnej/białej bazy */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Kolorowe, ruchome orby */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -2;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(29, 78, 216, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.35) 0%, transparent 60%);
    animation: swirl-bg 30s infinite linear;
    filter: blur(80px);
    -webkit-filter: blur(80px);
    will-change: transform;
}

/* Intensywniejsze kropki na wierzchu tła */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: radial-gradient(rgba(15, 23, 42, 0.12) 2px, transparent 2px);
    background-size: 26px 26px;
}

@keyframes swirl-bg {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

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

.bg-light {
    background-color: var(--bg-light);
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 24px 24px;
}

.bg-tint {
    background-color: rgba(255, 255, 255, 0.8);
    /* Półprzezroczysty błękit by tło mogło prześwitywać */
}

.bg-white {
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

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

/* Buttons */
.btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 16px;
    line-height: 1;
}

.btn:focus,
.btn:focus-visible,
.btn:active {
    outline: none;
    border-color: var(--primary) !important;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
    /* Przyjemny cień przycisku */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
    background: var(--primary-hover);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    max-height: 40px;
    width: auto;
    display: block;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    margin: 0 15px;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.hero {
    position: relative;
    padding: 120px 0 180px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.hero-image.active {
    opacity: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-light);
    color: var(--text-muted);
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-main);
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

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

/* Glass Card Utility */
.glass-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-card .icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(29, 78, 216, 0.08);
    /* Bardzo delikatne, biznesowe tło */
    color: var(--primary);
    border-radius: 14px;
}

.benefit-card .icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Target */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.target-card {
    overflow: hidden;
    transition: var(--transition);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.target-img-el {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.target-content {
    padding: 25px;
}

.target-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.recommended-swiper .target-content h3 {
    height: 2.7em;
    margin-bottom: 20px;
    overflow: hidden;
}

.target-content p {
    color: var(--text-muted);
    text-align: center;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Solutions */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.solution-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-muted);
}

.solution-item:hover p {
    color: rgba(0, 0, 0, 0.9);
}

.icon-lg {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(29, 78, 216, 0.06);
    color: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.icon-lg svg {
    width: 36px;
    height: 36px;
}

.solution-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.solution-item p {
    color: var(--text-muted);
    transition: var(--transition);
}

/* Steps */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-info p {
    color: var(--text-muted);
    margin: 0;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

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

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-muted);
}

/* Contact */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 60px;
    background: rgba(255, 255, 255, 0.9);
    /* Tło w kolorze zabarwionych sekcji (bg-tint) */
    color: var(--text-main);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.contact-info p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.5;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
}

.contact-icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.contact-form-container {
    padding: 60px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary) !important;
    background: white;
    box-shadow: none;
}

.form-status {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

/* Footer */
.main-footer {
    color: var(--text-main);
    background: white;
    padding: 30px 0;
}

.main-footer p {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .main-footer .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin: 0 auto;
        max-width: 600px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    /* Uproszczone dla mobile */
    .hero {
        padding: 140px 0 80px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .benefits-grid,
    .target-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Glitch Animation */
.glitch-char {
    display: inline;
    border-radius: 2px;
    transition: background-color 0.1s ease, color 0.1s ease;
}

.glitch-char.glitching {
    background-color: var(--primary);
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* Polecane Rozwiązania (Nowa sekcja) */
.recommended-section {
    padding: 100px 0;
}

.recommended-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.recommended-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.recommended-swiper {
    padding: 0 40px 20px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important;
    width: 30px !important;
    height: 30px !important;
    margin-top: -15px !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 300 !important;
}

.recommended-swiper .swiper-wrapper {
    align-items: stretch;
}

.recommended-swiper .swiper-slide {
    height: auto;
}

.recommended-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recommended-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.recommended-img-wrapper {
    height: 260px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

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

.recommended-content {
    padding: 30px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recommended-content h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.recommended-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.recommended-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline-white {
    display: inline-block;
    background: white;
    color: var(--text-main);
    border-radius: 50px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: #f8fafc;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.btn-primary-dark {
    display: inline-block;
    background: #4c1d95;
    color: white;
    border-radius: 50px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #4c1d95;
    box-shadow: 0 4px 15px rgba(76, 29, 149, 0.2);
}

.btn-primary-dark:hover {
    background: #3b0764;
    border-color: #3b0764;
    color: white;
}@media (max-width: 768px) {
    .recommended-actions {
        flex-direction: column;
        align-items: center;
    }
    .recommended-actions .btn-outline-white,
    .recommended-actions .btn-primary-dark {
        width: 100%;
        max-width: 300px;
    }
}

/* Card Badges */
.card-image-wrapper {
    position: relative;
    width: 100%;
}

.vat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.rabat-badge {
    position: absolute;
    top: 42px;
    left: 12px;
    background: #0284c7;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.rabat-badge:hover {
    background: #0369a1;
    transform: scale(1.05);
}

.card-price-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(89, 29, 144, 0.65);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #ffffff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.card-price-bar .price-label {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-price-bar .price-value {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

/* Swiper equal height layout */
.recommended-swiper .swiper-wrapper {
    display: flex;
}

.recommended-swiper .swiper-slide {
    height: auto !important;
    display: flex;
    flex-direction: column;
}

.recommended-swiper .target-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Strona Polityka Prywatności */
.policy-page {
    padding: 60px 0;
}

.policy-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.policy-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.policy-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
}

.policy-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 0 10px 0;
}

.policy-section p {
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.7;
}

.policy-section ul {
    margin: 12px 0 20px 25px;
    color: var(--text-main);
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.policy-table th,
.policy-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-table th {
    background-color: var(--bg-light);
    color: var(--secondary);
    font-weight: 700;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:hover {
    background-color: rgba(248, 250, 252, 0.8);
}

.contact-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 24px 18px;
    }
    .policy-title {
        font-size: 1.75rem;
    }
}

/* Footer */
.main-footer {
    background-color: var(--secondary);
    color: #ffffff;
    padding: 30px 0;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.2s ease;
}

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




