:root {
    --primary-color: #e83e8c;
    --primary-light: #ff6fa3;
    --primary-dark: #b01e68;
    --secondary-color: #1a237e;
    --secondary-light: #4a52aa;
    --secondary-dark: #000053;
    --accent-color: #4dd0e1;
    --text-color: #333;
    --text-light: #666;
    --background-light: #fff;
    --background-gray: #f9f9f9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    --section-spacing: 100px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 70px;
}

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

h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3.6rem;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1.5rem auto;
}

.subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-top: -1rem;
}

.cta-button, .primary-button, .secondary-button, .call-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.primary-button {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.primary-button:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header & Navigation */
header {
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255));
    padding: 2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 3rem;
}

.nav-links a {
    color: var(--secondary-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-links a.cta-button {
    color: white;
    background: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
}

.nav-links a.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.nav-links a.cta-button::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--secondary-dark);
}

/* Dodatkowe style dla nowej sekcji hero */
.hero-section {
    padding-top: var(--section-spacing); /* Ustawienie początkowego paddingu */ 
    /* Można też ustawić np. padding-top: 0; jeśli sekcja hero ma mieć inne odstępy */
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 8rem 0;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    color: var(--secondary-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    border-radius: 50% 10% 50% 10%;
    box-shadow: var(--shadow);
    max-width: 550px;
    margin: 0 auto;
    transition: var(--transition);
}

/* About Section */
.about-section {
    background-color: var(--background-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-image, .about-text {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 100%;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.credential i {
    color: var(--primary-color);
    font-size: 2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 8rem;
    height: 8rem;
    background: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 3.5rem;
}

/* Approach Section */
.approach-section {
    background: var(--background-gray);
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.approach-text, .approach-image {
    flex: 1;
}

.approach-point {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.approach-point:hover {
    transform: translateX(10px);
}

.approach-point h3 {
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.approach-point i {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-gray);
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonial {
    min-width: 100%;
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-content {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 4rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    color: var(--primary-light);
    opacity: 0.1;
    font-family: var(--heading-font);
}

.stars {
    color: gold;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.testimonial-author {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author .name {
    font-weight: 600;
    color: var(--primary-dark);
}

.testimonial-author .date {
    color: var(--text-light);
    font-size: 1.4rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    gap: 2rem;
}

.testimonial-controls button {
    background: white;
    border: none;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
}

/* Contact Section */
.contact-section {
    position: relative;
    background-color: var(--background-light);
}

.contact-content {
    display: flex;
    gap: 5rem;
}

.contact-centered {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    text-align: center;
}

.phone-number-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.phone-number-main i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(232, 62, 140, 0.1);
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.phone-number-main a {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--secondary-dark);
    text-decoration: none;
}

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

.call-hours {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.contact-locations {
    margin: 4rem 0;
}

.contact-locations h3 {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.contact-locations h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto;
}

.location-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.location-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    transition: var(--transition);
}

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

.location-icon {
    width: 6rem;
    height: 6rem;
    background: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.location-icon i {
    font-size: 2.5rem;
}

.location-card h4 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.location-hours {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

.location-hours i {
    color: var(--primary-color);
}

.additional-contact {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.contact-item i {
    font-size: 2.4rem;
    color: var(--primary-color);
    width: 4rem;
    height: 4rem;
    background: rgba(232, 62, 140, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-note {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: -1rem;
}

.contact-cta {
    margin-top: 2rem;
}

.call-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.call-button i {
    animation: shake 1s infinite;
}

.call-button:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background: var(--secondary-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4, .footer-contact h4 {
    color: white;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 55%;
    }
    
    .hero, .about-content, .approach-content, .contact-content {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 3rem;
    }
    
    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .location-cards {
        justify-content: center;
    }
    
    .location-card {
        max-width: 300px;
        width: 100%;
    }

    .approach-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2.2rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    /* Style dla wszystkich obrazów na urządzeniach mobilnych */
    img {
        max-width: 90%;
        border-radius: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 2rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-image img {
        border-radius: 30% 5% 30% 5%;
        max-height: 450px;
        object-fit: cover;
        object-position: center;
        max-width: 90%;
    }

    .about-image {
        margin-bottom: 3rem;
        text-align: center;
    }

    .about-image img {
        max-width: 80%;
        max-height: 400px;
        object-fit: cover;
        object-position: center;
    }

    .credentials {
        flex-direction: column;
        align-items: center;
    }

    .credential {
        width: 100%;
        justify-content: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-point {
        padding: 1.5rem;
    }

    .testimonial-content {
        padding: 3rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-number-main a {
        font-size: 2.8rem;
    }

    .location-card {
        padding: 2rem;
    }

    /* Dodatkowe style dla elementów ze zdjęciami */
    .about-image,
    .approach-image,
    .service-card,
    .approach-point,
    .location-card {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 6rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .primary-button, .secondary-button {
        width: 100%;
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }
    
    .location-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .location-card {
        width: 100%;
        max-width: 100%;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .testimonial-controls button {
        width: 4rem;
        height: 4rem;
    }

    .phone-number-main i {
        font-size: 3rem;
        width: 6rem;
        height: 6rem;
    }

    .call-button {
        width: 100%;
        justify-content: center;
        padding: 1.2rem;
    }

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

    .contact-info {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0;
    }
    
    .hero-image img {
        border-radius: 40% 10% 40% 10%;
        max-height: 350px;
        max-width: 85%;
    }

    .about-image img {
        max-width: 75%;
        max-height: 350px;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .nav-links {
        width: 80%;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    .cta-button, .primary-button, .secondary-button, .call-button {
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
    }

    /* Style dla wszystkich obrazów na małych urządzeniach */
    img {
        max-width: 85%;
    }
}

@media (max-width: 375px) {
    html {
        font-size: 45%;
    }
    
    .hero-image img {
        max-width: 90%;
        max-height: 300px;
    }
    
    .phone-number-main a {
        font-size: 2.4rem;
    }

    .phone-number-main i {
        font-size: 2.6rem;
        width: 5.5rem;
        height: 5.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-controls button {
        width: 3.5rem;
        height: 3.5rem;
    }

    /* Style dla wszystkich obrazów na bardzo małych urządzeniach */
    img {
        max-width: 90%;
    }

    .about-image img {
        max-width: 85%;
        max-height: 300px;
    }
}

/* Dodanie klas dla nowego układu grid w sekcji podejście */
.approach-content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.about-image img, 
.service-card img, 
.approach-point img,
.testimonial img,
.location-card img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.cookie-text p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-accept, .cookie-reject, .cookie-settings {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.4rem;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background: white;
    color: var(--text-color);
}

.cookie-settings {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cookie-settings:hover {
    background: var(--accent-color);
    color: white;
}

.cookie-policy {
    color: var(--accent-color);
    font-size: 1.3rem;
    text-decoration: underline;
}

.cookie-policy:hover {
    color: white;
}

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

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--secondary-dark);
    font-size: 2.4rem;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.cookie-close:hover {
    color: var(--primary-color);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 10px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-category h4 {
    margin: 0;
    color: var(--secondary-dark);
    font-size: 1.8rem;
}

.cookie-category p {
    margin: 0;
    color: var(--text-light);
    font-size: 1.4rem;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: var(--primary-light);
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-save {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.4rem;
}

.cookie-save:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-accept, .cookie-reject, .cookie-settings {
        width: 100%;
        padding: 1.2rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-header {
        padding: 1.5rem;
    }
    
    .cookie-modal-body {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-save {
        width: 100%;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
} 