﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Stack Sans Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

:root {
    --color1: #257aa5;
    --color2: #ffffff;
    --color3: #044463;
    --text-color: #333;
    --light-gray: #ecf0f1;
    --border-radius: 16px;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Stack Sans Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.benefits {
    background: transparent;
}

.cruceros {
    background: transparent;
}

.contacto {
    background: transparent;
}

.footer {
    background: transparent;
}

.navbar {
    background-color: transparent;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    box-shadow: none;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.navbar.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    flex-direction: row;
    gap: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: var(--color1);
}

.hero-carousel {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: #f5f5f7;
    margin-top: 0;
}

.logo-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 50;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.carousel-slide:nth-child(2) {
    display: none !important;
}

.carousel-content {
    display: none;
}

.carousel-content h1 {
    font-size: 3.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.carousel-content p {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.carousel-prev, .carousel-next {
    display: none;
}

.carousel-dots {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

.benefits {
    background-color: #ffffff;
    padding: 2rem 2rem;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.benefit-card {
    background-color: white;
    padding: 1.3rem 1.9rem;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    width: fit-content;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 122, 165, 0.14);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 0.9rem;
    color: #333;
    font-weight: 700;
    margin: 0;
    text-align: left;
    line-height: 1.2;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.cruceros {
    max-width: 1200px;
    margin: 0.5rem auto;
    padding: 0 2rem;
}

.cruceros-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color1);
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cruceros-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.crucero-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding-bottom: 0;
    position: relative;
}

.crucero-logo {
    display: block;
    width: 80px;
    height: auto;
    margin: 1rem auto;
}

.crucero-logo-large {
    display: block;
    width: auto;
    height: 100px;
    margin: 1rem auto;
    object-fit: contain;
}

.crucero-costa {
    color: #257aa5 !important;
}

.crucero-msc {
    color: #044463 !important;
}

/* Costa Serena colors */
.crucero-card:has(.crucero-costa) .date-btn.active {
    background-color: #257aa5;
}

.crucero-card:has(.crucero-costa) strong {
    color: #257aa5;
}

.crucero-card:has(.crucero-costa) .accordion-header {
    background-color: #257aa5;
}

/* MSC Seaview colors */
.crucero-card:has(.crucero-msc) .date-btn.active {
    background-color: #044463;
}

.crucero-card:has(.crucero-msc) strong {
    color: #044463;
}

.crucero-card:has(.crucero-msc) .accordion-header {
    background-color: #044463;
}

.crucero-name {
    text-align: center;
    font-size: 2.2rem;
    color: var(--color1);
    margin: 0 0 0.5rem 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.date-buttons {
    display: flex;
    gap: 0;
    justify-content: stretch;
    padding: 0 1rem;
    width: calc(100% - 2rem);
    margin: 0 auto 1.5rem auto;
    max-width: 100%;
    z-index: 15;
}

.date-btn {
    flex: 1;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #e0e0e0;
    color: #666;
    margin: 0 0.4rem;
}

.date-btn.active {
    background-color: var(--color1);
    color: white;
}

.date-btn:hover {
    transform: translateY(-2px);
}

.crucero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(37, 122, 165, 0.15);
}

.crucero-hero-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 16px;
    margin: 0.5rem 2rem 1.5rem 2rem;
    width: calc(100% - 4rem);
}

.crucero-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.crucero-gallery {
    position: relative;
    overflow: hidden;
    height: clamp(250px, 80vw, 350px);
    border-radius: 0;
    margin: 0.8rem 0.3rem;
    z-index: 1;
    cursor: pointer;
}

.crucero-gallery:hover .carousel-arrow {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 16px;
    will-change: opacity;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 20;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .carousel-slide {
        background-image: url('img/banner-mobile.jpeg') !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .logo-container {
        display: none;
    }
}

.modal-gracias {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(3px);
}

.modal-gracias.active {
    display: flex;
}

.modal-gracias-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease;
}

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

.modal-gracias-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-gracias-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.modal-gracias-content h2 {
    font-size: 2rem;
    color: #257aa5;
    margin-bottom: 1rem;
    font-weight: 900;
}

.modal-gracias-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-gracias-subtext {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1.5rem !important;
}

.modal-gracias-btn {
    background-color: #257aa5;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-gracias-btn:hover {
    background-color: #1a5a7f;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 122, 165, 0.3);
}

.hidden {
    display: none !important;
}

.carousel-arrow.left {
    left: 12px;
}

.carousel-arrow.right {
    right: 12px;
}

.crucero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 16px;
}


.recorrido-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.3s;
    border-radius: 16px;
    overflow: hidden;
}

.recorrido-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.crucero-image-container .map-icon {
    display: flex;
}

.crucero-image-container .recorrido-overlay:not(.hidden) ~ .map-icon {
    display: none;
}

.recorrido-header {
    display: none;
}

.recorrido-content {
    position: relative;
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recorrido-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recorrido-arrow {
    display: none;
}

.recorrido-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.recorrido-arrow.left {
    left: 12px;
}

.recorrido-arrow.right {
    right: 12px;
}

.close-map {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: #e53e3e;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4);
    z-index: 60;
}

.close-map:hover {
    background: #c53030;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(229, 62, 62, 0.5);
}

.recorrido-toggle {
    display: none;
}

.crucero-info {
    padding: 0.5rem 1.5rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    position: relative;
}

.map-info {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #ebbf44;
    padding: 0.6rem 1.2rem 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 20;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-info:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.map-text {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.map-icon-circle {
    position: relative;
    right: auto;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.map-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0.8) sepia(1) saturate(1.8) hue-rotate(-10deg);
}

.crucero-info h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#titulo-costa-serena {
    color: var(--color1);
}

#titulo-msc-seaview {
    color: var(--color1);
}

.crucero-description {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.35;
    font-weight: 400;
    font-size: 1.15rem;
}

.highlight-costa {
    color: var(--color1);
    font-weight: 700;
}

.highlight-msc {
    color: #044463;
    font-weight: 700;
}

.crucero-route {
    color: #555;
    line-height: 1.6;
    font-weight: 400;
    font-size: 0.9rem;
    font-style: italic;
}

.accordion-container {
    padding: 0 2rem 2rem 2rem;
    margin-top: -1.5rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 1.2rem 2.5rem 1.2rem 1.2rem;
    background-color: var(--color1);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    position: absolute;
    right: 1.2rem;
    top: 45%;
    transform: translateY(-50%);
}

.accordion-header.active::after {
    transform: rotate(180deg);
}

.accordion-header:hover {
    background-color: #1a5a7f;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #f9fafb;
    transition: max-height 0.3s ease;
    padding: 0 1.2rem;
}

.accordion-content.active {
    max-height: 1200px;
    padding: 0.5rem 1.2rem 1.2rem 1.2rem;
}

.accordion-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.hidden {
    display: none;
}


.contacto {
    background-color: #ffffff;
    padding: 1.5rem 2rem 0.5rem 2rem;
    margin-top: 4rem;
}

.contacto h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--color3);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color1);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(37, 122, 165, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color1) 0%, #1a5a7f 100%);
    color: white;
    padding: 1.1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(37, 122, 165, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 122, 165, 0.3);
}

.footer {
    background-color: var(--color1);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    font-weight: 400;
    font-size: 0.95rem;
    border-top: none;
}

@media (max-width: 768px) {
    .carousel-content h1 {
        font-size: 1.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .cruceros-grid {
        grid-template-columns: 1fr;
    }

    .crucero-image-container {
        height: 250px;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.whatsapp-button:hover {
    background-color: #1faa54;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:focus {
    outline: none;
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
}

.whatsapp-button img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 1rem 0;
    flex-wrap: wrap;
}

.btn-consultar {
    flex: 0.5;
    min-width: 120px;
    max-width: 150px;
    padding: 0.8rem 1.8rem;
    background-color: #257aa5;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Stack Sans Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-consultar {
        flex: 1;
        min-width: 100%;
        max-width: 100%;
    }
}

.btn-consultar:hover {
    background-color: #1a5a7f;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 122, 165, 0.3);
}

.btn-whatsapp-vendedor {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    padding: 0.8rem 1.8rem;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Stack Sans Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-whatsapp-vendedor {
        flex: 1;
        min-width: 100%;
        max-width: 100%;
    }
}

.btn-whatsapp-vendedor:hover {
    background-color: #1faa54;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-icon {
    width: 28px;
    height: 28px;
}

.modal-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-fullscreen.active {
    display: flex;
}

.modal-fullscreen img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 10000;
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background 0.3s ease;
}

.modal-arrow:hover {
    background: rgba(255, 255, 255, 0.6);
}

.modal-arrow.left {
    left: 20px;
}

.modal-arrow.right {
    right: 20px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    line-height: 1.6;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    animation: slideUpBanner 0.5s ease forwards;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.cookie-link {
    color: #257aa5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: #1a5a7f;
    text-decoration: underline;
}

.cookie-accept-btn {
    background-color: #257aa5;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-accept-btn:hover {
    background-color: #1a5a7f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 122, 165, 0.3);
}

.cookie-accept-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-accept-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

