/*==================================================
CreditScoreU v2.0
Professional Landing Page
==================================================*/

/*==================================================
RESET
==================================================*/

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

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    font-size:1rem;
    line-height:1.7;
    color:#1f2937;
    background:#ffffff;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}

/*==================================================
VARIABLES
==================================================*/

:root{

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --secondary:#38bdf8;

    --success:#16a34a;
    --warning:#f59e0b;
    --danger:#dc2626;

    --white:#ffffff;

    --gray-50:#f8fafc;
    --gray-100:#f1f5f9;
    --gray-200:#e5e7eb;
    --gray-300:#d1d5db;
    --gray-500:#6b7280;
    --gray-700:#374151;
    --gray-900:#111827;

    --shadow-sm:0 2px 8px rgba(0,0,0,.05);

    --shadow:
    0 12px 30px rgba(0,0,0,.08);

    --shadow-lg:
    0 20px 50px rgba(0,0,0,.15);

    --radius:14px;

    --transition:.3s ease;

}

/*==================================================
TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--gray-900);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:3rem;

    margin-bottom:20px;

}

h2{

    font-size:2.3rem;

    margin-bottom:18px;

}

h3{

    font-size:1.35rem;

}

p{

    color:var(--gray-700);

    margin-bottom:18px;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

/*==================================================
IMAGES
==================================================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}

/*==================================================
LAYOUT
==================================================*/

.container{

    width:min(1180px,92%);

    margin:auto;

}

section{

    padding:90px 0;

}

/*==================================================
SECTION TITLE
==================================================*/

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.section-badge{

    display:inline-block;

    background:#dbeafe;

    color:var(--primary);

    padding:8px 18px;

    border-radius:999px;

    font-size:.9rem;

    font-weight:700;

    margin-bottom:18px;

}

/*==================================================
BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 28px;

    border:none;

    border-radius:999px;

    cursor:pointer;

    font-weight:700;

    transition:var(--transition);

}

.btn img{

    width:20px;

    height:20px;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

    box-shadow:var(--shadow);

}

.btn-small{

    padding:12px 22px;

    font-size:.95rem;

}

/*==================================================
UTILITY
==================================================*/

.text-center{

    text-align:center;

}

.shadow{

    box-shadow:var(--shadow);

}

.radius{

    border-radius:var(--radius);

}

.bg-light{

    background:var(--gray-50);

}
/*==================================================
HEADER
==================================================*/

.header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:#ffffff;

    box-shadow:0 2px 15px rgba(0,0,0,.06);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:80px;

}

.logo img{

    width:220px;

    height:auto;

}

/*==================================================
NAVIGATION
==================================================*/

.navbar ul{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    color:var(--gray-700);

    font-weight:600;

    transition:var(--transition);

}

.navbar a:hover{

    color:var(--primary);

}

.navbar .btn{

    margin-left:10px;

}

/*==================================================
MOBILE MENU
==================================================*/

.mobile-menu-toggle{

    display:none;

    border:none;

    background:none;

    cursor:pointer;

    font-size:2rem;

    color:var(--gray-900);

}

/*==================================================
HERO
==================================================*/

.hero{

    padding:110px 0;

    background:linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
    );

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.hero-content{

    max-width:600px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#dbeafe;

    color:var(--primary);

    padding:10px 18px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:25px;

}

.hero h1{

    font-size:3.3rem;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    font-size:1.1rem;

    color:var(--gray-700);

    margin-bottom:30px;

}

/*==================================================
HERO LIST
==================================================*/

.hero-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:35px;

}

.hero-list li{

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

}

.hero-list img{

    width:28px;

    height:28px;

}

/*==================================================
HERO BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:35px;

}

/*==================================================
TRUST BADGES
==================================================*/

.hero-trust{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.hero-trust span{

    background:#fff;

    border:1px solid var(--gray-200);

    border-radius:999px;

    padding:10px 16px;

    font-size:.95rem;

    font-weight:600;

    color:var(--gray-700);

    box-shadow:var(--shadow-sm);

}

/*==================================================
HERO IMAGE
==================================================*/

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:620px;

    margin:auto;

    animation:heroFloat 5s ease-in-out infinite;

}

/*==================================================
ANIMATION
==================================================*/

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
FOCUS
==================================================*/

a:focus,
button:focus{

    outline:3px solid #93c5fd;

    outline-offset:3px;

}
/*==================================================
BENEFITS
==================================================*/

.benefits{

    background:var(--gray-50);

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.benefit-card{

    background:#fff;

    padding:35px 28px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

    border:1px solid transparent;

}

.benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-color:#dbeafe;

}

.benefit-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eff6ff;

    border-radius:50%;

}

.benefit-icon img{

    width:64px;

    height:64px;

}

.benefit-card h3{

    margin-bottom:15px;

}

.benefit-card p{

    margin:0;

}

/*==================================================
HOW IT WORKS
==================================================*/

.how-it-works{

    background:#fff;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.step-card{

    position:relative;

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.step-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.step-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.5rem;

    font-weight:700;

}

.step-card h3{

    margin-bottom:18px;

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{

    background:var(--gray-50);

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

}

.why-content h2{

    margin-bottom:20px;

}

.why-list{

    margin:35px 0;

    display:grid;

    gap:18px;

}

.why-list li{

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

}

.why-list img{

    width:28px;

    height:28px;

}

/*==================================================
TRUST SECTION
==================================================*/

.trust{

    background:#fff;

}

.trust-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.trust-image img{

    width:100%;

    max-width:500px;

    margin:auto;

}

.trust-items{

    margin-top:35px;

    display:flex;

    flex-direction:column;

    gap:22px;

}

.trust-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:var(--shadow-sm);

    transition:.3s;

}

.trust-item:hover{

    transform:translateX(8px);

    box-shadow:var(--shadow);

}

.trust-item img{

    width:58px;

    height:58px;

    flex-shrink:0;

}

.trust-item h4{

    margin-bottom:8px;

    font-size:1.15rem;

}

.trust-item p{

    margin:0;

    color:var(--gray-500);

}

/*==================================================
COMMON CARD EFFECT
==================================================*/

.benefit-card,
.step-card,
.trust-item{

    will-change:transform;

}

.benefit-card:hover,
.step-card:hover,
.trust-item:hover{

    cursor:default;

}
/*==================================================
FAQ
==================================================*/

.faq{

    background:var(--gray-50);

}

.faq-wrapper{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:#fff;

    margin-bottom:20px;

    border-radius:18px;

    box-shadow:var(--shadow-sm);

    overflow:hidden;

    transition:.3s;

}

.faq-item:hover{

    box-shadow:var(--shadow);

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    padding:24px 30px;

    font-size:1.1rem;

    font-weight:700;

    color:var(--gray-900);

    position:relative;

    user-select:none;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:30px;

    top:50%;

    transform:translateY(-50%);

    font-size:28px;

    color:var(--primary);

    transition:.3s;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-item p{

    padding:0 30px 25px;

    color:var(--gray-700);

    margin:0;

}

/*==================================================
CTA
==================================================*/

.cta{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    text-align:center;

}

.cta-content{

    max-width:760px;

    margin:auto;

}

.cta .section-badge{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.cta h2{

    color:#fff;

    margin:20px 0;

}

.cta p{

    color:rgba(255,255,255,.9);

    margin-bottom:35px;

}

.cta .btn-primary{

    background:#fff;

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:#f8fafc;

    transform:translateY(-4px);

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:80px 0 30px;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:40px;

    margin-bottom:50px;

}

.footer-brand img{

    margin-bottom:20px;

}

.footer-brand p{

    color:#94a3b8;

    line-height:1.8;

}

.footer-links h3,

.footer-contact h3{

    color:#fff;

    margin-bottom:20px;

    font-size:1.2rem;

}

.footer-links ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-links a:hover{

    color:#38bdf8;

    padding-left:6px;

}

.footer-contact p{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    color:#cbd5e1;

}

.footer-contact img{

    width:22px;

    height:22px;

}

/*==================================================
SOCIAL ICONS
==================================================*/

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    transition:.3s;

}

.social-icons img{

    width:24px;

    height:24px;

}

.social-icons a:hover{

    transform:translateY(-5px);

    background:var(--primary);

}

/*==================================================
FOOTER BOTTOM
==================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#94a3b8;

    font-size:.95rem;

}

/*==================================================
LINK HOVER EFFECTS
==================================================*/

.footer a{

    transition:all .3s ease;

}

.footer a:hover{

    text-decoration:none;

}

/*==================================================
ACCESSIBILITY
==================================================*/

.footer a:focus,

.faq summary:focus{

    outline:3px solid #93c5fd;

    outline-offset:4px;

}
/*==================================================
RESPONSIVE - 1200px
==================================================*/

@media (max-width:1200px){

.container{

    width:95%;

}

.hero-grid,
.why-grid,
.trust-grid{

    gap:50px;

}

}

/*==================================================
RESPONSIVE - 992px
==================================================*/

@media (max-width:992px){

.hero-grid,
.why-grid,
.trust-grid{

    grid-template-columns:1fr;

}

.hero-content{

    text-align:center;

    margin:auto;

}

.hero-list{

    align-items:center;

}

.hero-buttons{

    justify-content:center;

}

.hero-trust{

    justify-content:center;

}

.benefits-grid{

    grid-template-columns:repeat(2,1fr);

}

.steps-grid{

    grid-template-columns:1fr;

}

.footer-top{

    grid-template-columns:repeat(2,1fr);

}

}

/*==================================================
RESPONSIVE - 768px
==================================================*/

@media (max-width:768px){

    .mobile-menu-toggle{

        display:block;

    }

    .navbar{

        display:none;

        position:absolute;

        top:70px;

        left:0;

        width:100%;

        background:#ffffff;

        padding:20px;

        box-shadow:0 10px 30px rgba(0,0,0,.08);

        z-index:999;

    }

    .navbar.active{

        display:block;

    }

    .navbar ul{

        display:flex;

        flex-direction:column;

        gap:18px;

        align-items:center;

    }

    .header .container{

        min-height:70px;

    }

    .hero{

        padding:70px 0;

    }

    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-content{

        max-width:100%;

    }

    .hero h1{

        font-size:2.3rem;

    }

    h2{

        font-size:1.9rem;

    }

    section{

        padding:70px 0;

    }

    .hero-list{

        align-items:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-trust{

        justify-content:center;

    }

    .footer-top{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-contact p{

        justify-content:center;

    }

    .social-icons{

        justify-content:center;

    }

}

/*==================================================
RESPONSIVE - 480px
==================================================*/

@media (max-width:480px){

.hero h1{

    font-size:2rem;

}

.hero p{

    font-size:1rem;

}

.benefits-grid{

    grid-template-columns:1fr;

}

.hero-buttons{

    flex-direction:column;

}

.btn{

    width:100%;

}

.hero-list li{

    font-size:.95rem;

}

}

/*==================================================
RESPONSIVE - 375px
==================================================*/

@media (max-width:375px){

.container{

    width:94%;

}

.hero h1{

    font-size:1.8rem;

}

.section-badge{

    font-size:.8rem;

}

}

/*==================================================
RESPONSIVE - 320px
==================================================*/

@media (max-width:320px){

.hero h1{

    font-size:1.6rem;

}

h2{

    font-size:1.5rem;

}

.btn{

    padding:14px 20px;

    font-size:.9rem;

}

}

/*==================================================
BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:var(--shadow);

    transition:.3s;

    opacity:0;

    visibility:hidden;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--primary-dark);

    transform:translateY(-5px);

}

/*==================================================
SCROLL ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.active{

    opacity:1;

    transform:none;

}

/*==================================================
LOADING
==================================================*/

.loading{

    opacity:.6;

    pointer-events:none;

}

/*==================================================
CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==================================================
TEXT SELECTION
==================================================*/

::selection{

    background:#2563eb;

    color:#fff;

}

/*==================================================
BETTER IMAGE RENDERING
==================================================*/

img{

    image-rendering:auto;

}

/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

*{

    animation:none !important;

    transition:none !important;

    scroll-behavior:auto !important;

}

}

/*==================================================
PRINT CSS
==================================================*/

@media print{

.header,
.footer,
.mobile-menu-toggle,
.back-to-top,
.cta{

    display:none;

}

body{

    background:#fff;

    color:#000;

}

section{

    padding:20px 0;

}

a{

    color:#000;

    text-decoration:none;

}

}
/*==================================================
CONTACT PAGE
==================================================*/

.contact-page{

    padding:90px 0;

    background:#f8fafc;

}

.contact-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:50px;

    align-items:start;

}

.contact-form{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form h2{

    margin-bottom:25px;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#111827;

}

.form-group input,

.form-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #d1d5db;

    border-radius:12px;

    font-size:16px;

    transition:.3s;

    background:#fff;

}

.form-group textarea{

    resize:vertical;

    min-height:170px;

}

.form-group input:focus,

.form-group textarea:focus{

    outline:none;

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.15);

}

.contact-form .btn{

    width:100%;

    justify-content:center;

}

/*=========================================
CONTACT INFO
=========================================*/

.contact-info{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-info h2{

    margin-bottom:20px;

}

.contact-info p{

    margin-bottom:25px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:25px;

}

.contact-item img{

    width:42px;

    height:42px;

    flex-shrink:0;

}

.contact-item h4{

    margin-bottom:5px;

    font-size:18px;

}

.contact-item span{

    color:#6b7280;

    line-height:1.6;

}

/*=========================================
FORM ROW
=========================================*/

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:992px){

.contact-grid{

    grid-template-columns:1fr;

}

}

@media (max-width:768px){

.contact-form,

.contact-info{

    padding:30px;

}

.form-row{

    grid-template-columns:1fr;

}

}

@media (max-width:480px){

.contact-page{

    padding:60px 0;

}

.contact-form,

.contact-info{

    padding:22px;

}

}
/*==================================================
LEGAL PAGES
Privacy • Terms • Disclaimer
==================================================*/

.legal-page{

    background:#f8fafc;

    padding:90px 0;

}

.legal-content{

    max-width:900px;

    margin:auto;

    background:#ffffff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

/*==================================================
HEADINGS
==================================================*/

.legal-content h2{

    margin-top:45px;

    margin-bottom:18px;

    color:var(--gray-900);

    font-size:2rem;

    border-left:5px solid var(--primary);

    padding-left:15px;

}

.legal-content h3{

    margin-top:30px;

    margin-bottom:15px;

    color:var(--gray-900);

    font-size:1.35rem;

}

/*==================================================
PARAGRAPHS
==================================================*/

.legal-content p{

    margin-bottom:18px;

    color:var(--gray-700);

    line-height:1.9;

}

/*==================================================
LISTS
==================================================*/

.legal-content ul,

.legal-content ol{

    margin:20px 0 25px 30px;

}

.legal-content li{

    margin-bottom:12px;

    color:var(--gray-700);

    line-height:1.8;

}

/*==================================================
LINKS
==================================================*/

.legal-content a{

    color:var(--primary);

    font-weight:600;

    text-decoration:none;

}

.legal-content a:hover{

    color:var(--primary-dark);

    text-decoration:underline;

}

/*==================================================
BLOCKQUOTE
==================================================*/

.legal-content blockquote{

    margin:30px 0;

    padding:20px 25px;

    background:#eff6ff;

    border-left:5px solid var(--primary);

    border-radius:10px;

    color:var(--gray-700);

    font-style:italic;

}

/*==================================================
TABLE
==================================================*/

.legal-content table{

    width:100%;

    border-collapse:collapse;

    margin:30px 0;

}

.legal-content th,

.legal-content td{

    border:1px solid var(--gray-200);

    padding:14px;

    text-align:left;

}

.legal-content th{

    background:var(--primary);

    color:#ffffff;

}

.legal-content tr:nth-child(even){

    background:#f8fafc;

}

/*==================================================
HORIZONTAL LINE
==================================================*/

.legal-content hr{

    border:none;

    height:1px;

    background:var(--gray-200);

    margin:45px 0;

}

/*==================================================
TEXT SELECTION
==================================================*/

.legal-content ::selection{

    background:var(--primary);

    color:#ffffff;

}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:992px){

    .legal-content{

        padding:40px;

    }

}

@media (max-width:768px){

    .legal-page{

        padding:70px 0;

    }

    .legal-content{

        padding:30px;

    }

    .legal-content h2{

        font-size:1.7rem;

    }

}

@media (max-width:480px){

    .legal-page{

        padding:60px 0;

    }

    .legal-content{

        padding:22px;

        border-radius:14px;

    }

    .legal-content h2{

        font-size:1.45rem;

    }

    .legal-content h3{

        font-size:1.15rem;

    }

}
/* ==========================================
   Cookie Consent Banner
========================================== */

.cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    padding: 14px 18px;
    z-index: 99999;
    display: none;
    animation: fadeUp .35s ease;
}

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

.cookie-content p {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: .25s;
}

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

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

.cookie-btn.reject {
    background: #e5e7eb;
    color: #111827;
}

.cookie-btn.reject:hover {
    background: #d1d5db;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:768px){
.cookie-content p{
    font-size:14px;
}
.cookie-content{
    flex-direction:column;
    align-items:flex-start;
}

.cookie-buttons{
    width:100%;
}

.cookie-btn{
    flex:1;
}

}
.affiliate-disclaimer{

    font-size:14px;

    color:#b8c0d4;

    text-align:center;

    margin-bottom:12px;

    line-height:1.7;

}

.footer-contact a{

    color:#ffffff;

    text-decoration:none;

}

.footer-contact a:hover{

    text-decoration:underline;

}
.footer-contact a{
    color:#ffffff;
    text-decoration:none;
}

.footer-contact a:hover{
    text-decoration:underline;
}
.footer-contact a{
    color:#ffffff !important;
    text-decoration:none;
}