/**
* Template Name: BalancePfad
* Updated: Jan 2025 with Bootstrap v5.3.3
* Author: BalancePfad Team
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: 'Inter', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    --nav-font: 'Inter', sans-serif;
}

/* Global Colors - Modern Balance Theme */
:root {
    --background-color: #ffffff;
    --default-color: #2c3e50;
    --heading-color: #1a365d;
    --accent-color: #3498db;
    --accent-hover: #2980b9;
    --surface-color: #f8fafc;
    --contrast-color: #ffffff;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --text-muted: #7f8c8d;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Nav Menu Colors */
:root {
    --nav-color: #2c3e50;
    --nav-hover-color: #3498db;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #2c3e50;
    --nav-dropdown-hover-color: #3498db;
}

/* Color Presets */
.light-background {
    --background-color: #f8fafc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #1a365d;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #2c3e50;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    line-height: 1.6;
    font-weight: 400;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
}

/* Form styling */
.php-email-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.php-email-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.php-email-form .error-message {
    display: none;
    color: var(--error-color);
    background: #fdf2f2;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
}

.php-email-form .sent-message {
    display: none;
    color: var(--success-color);
    background: #f0fdf4;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
}

.php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: php-email-form-loading 1s ease-in-out infinite;
}

@keyframes php-email-form-loading {
    to {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
:root {
    --header-height: 80px;
    --header-padding: 20px;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--header-padding);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo:hover {
    text-decoration: none;
}

.sitename {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navmenu ul li a {
    display: flex;
    align-items: center;
    color: var(--nav-color);
    font-weight: 500;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.navmenu ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
    color: var(--accent-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.navmenu ul li a:hover::after,
.navmenu ul li a.active::after {
    width: 80%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--nav-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--accent-color);
}

.mobile-nav-toggle i {
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .navmenu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 300px;
        height: calc(100vh - var(--header-height));
        background: var(--nav-mobile-background-color);
        transition: 0.3s;
        box-shadow: -5px 0 15px var(--shadow-color);
        border-left: 1px solid var(--border-color);
    }

    .navmenu.open {
        right: 0;
    }

    .navmenu ul {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .navmenu ul li a {
        width: 100%;
        padding: 15px 20px;
        border-radius: 8px;
        justify-content: flex-start;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle .bi-list {
        display: block;
    }

    .mobile-nav-toggle .bi-x-lg {
        display: none;
    }

    .mobile-nav-toggle.open .bi-list {
        display: none;
    }

    .mobile-nav-toggle.open .bi-x-lg {
        display: block;
    }
}

@media (min-width: 1200px) {
    .navmenu {
        margin-left: auto;
    }

    .navmenu ul {
        gap: 10px;
    }

    .navmenu li {
        margin: 0 5px;
    }

    .navmenu a,
    .navmenu a:focus {
        padding: 10px 20px;
        color: var(--nav-color);
        font-weight: 500;
        font-size: 16px;
        position: relative;
        transition: 0.3s;
        border-radius: 8px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        margin-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--accent-color);
        background-color: rgba(52, 152, 219, 0.1);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
:root {
    --footer-bg: #1a365d;
    --footer-text: #ffffff;
    --footer-link: #bdc3c7;
    --footer-link-hover: #3498db;
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    font-size: 14px;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-branding {
    max-width: 400px;
}

.footer-branding .logo {
    margin-bottom: 20px;
}

.footer-branding .sitename {
    font-size: 24px;
    font-weight: 700;
    color: var(--footer-text);
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--footer-link);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    color: var(--footer-link);
}

.footer-contact a {
    color: var(--footer-link-hover);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--footer-text);
}

.footer-navigation h4 {
    color: var(--footer-text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation ul li {
    margin-bottom: 10px;
}

.footer-navigation ul li a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-navigation ul li a:hover {
    color: var(--footer-link-hover);
}

.footer-social h4 {
    color: var(--footer-text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--footer-link);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--footer-text);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--footer-link);
}

.footer-bottom .credits {
    margin-top: 10px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-branding,
    .footer-navigation,
    .footer-social {
        text-align: center;
    }

    .footer-navigation ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-navigation ul li {
        margin-bottom: 0;
    }

    .social-icons {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Preloader & Scroll Top
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader:before {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--contrast-color);
    text-decoration: none;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
}

.scroll-top:hover {
    background: var(--accent-hover);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}

/*--------------------------------------------------------------
# Sections & Layout
--------------------------------------------------------------*/
section,
.section {
    padding: 80px 0;
    overflow: hidden;
}

@media (max-width: 1199px) {
    section,
    .section {
        padding: 60px 0;
    }
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .swiper-wrapper {
    height: 500px;
}

.hero .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.7);
}

.hero .slide-content {
    position: relative;
    z-index: 2;
    color: var(--contrast-color);
    max-width: 800px;
    padding: 0 20px;
}

.hero .slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.hero .slide-content h2 a {
    color: var(--contrast-color);
    text-decoration: none;
}

.hero .slide-content h2 a:hover {
    color: var(--accent-color);
}

.hero .slide-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--contrast-color);
    font-size: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.hero .swiper-button-prev {
    left: 20px;
}

.hero .swiper-button-next {
    right: 20px;
}

.hero .swiper-pagination {
    bottom: 20px;
}

.hero .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .hero .swiper-wrapper,
    .hero .swiper-slide {
        height: 400px;
    }

    .hero .slide-content h2 {
        font-size: 32px;
    }

    .hero .slide-content p {
        font-size: 16px;
    }

    .hero .swiper-button-prev,
    .hero .swiper-button-next {
        display: none;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    background: var(--surface-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--background-color);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--contrast-color);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-block h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.text-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 25px;
}

.text-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-block ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--default-color);
}

.text-block ul li i {
    color: var(--success-color);
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.images-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.images-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.images-block img:hover {
    transform: scale(1.05);
}

.images-block img:first-child {
    grid-column: 1 / -1;
    height: 200px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .images-block {
        height: 300px;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--background-color);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card.reverse {
    direction: rtl;
}

.service-card.reverse .service-content {
    direction: ltr;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-content h3 i {
    color: var(--accent-color);
    font-size: 28px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-features span {
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .service-image img {
        height: 200px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 24px;
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    background: var(--background-color);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--contrast-color);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--background-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
}

.team-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.team-content .role {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media (max-width: 480px) {
    .team-card {
        margin-bottom: 30px;
    }

    .team-photo {
        height: 200px;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .team-content .role {
        font-size: 12px;
    }

    .team-content p {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/
.cookie-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    z-index: 9999;
    border: 1px solid var(--border-color);
    max-width: 500px;
    margin: 0 auto;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-wrapper.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-header i {
    font-size: 24px;
    color: var(--accent-color);
}

.cookie-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}

.cookie-data p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-data p a {
    color: var(--accent-color);
    text-decoration: none;
}

.cookie-data p a:hover {
    text-decoration: underline;
}

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

.cookie-button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cookie-button.accept {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.cookie-button.accept:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.cookie-button.decline {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border-color);
}

.cookie-button.decline:hover {
    background: var(--border-color);
    color: var(--default-color);
}

.hidden {
    display: none !important;
}

@media (max-width: 772px) {
    .cookie-wrapper {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-button {
        width: 100%;
        text-align: center;
    }
}