:root {
    --color-primary: #2c1810;
    --color-secondary: #8b4513;
    --color-accent: #d4a574;
    --color-gold: #c9a227;
    --color-dark: #1a1a1a;
    --color-light: #f5f0e8;
    --color-cream: #faf8f5;
    --color-stone: #e8e0d5;
    --gradient-hero: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(139, 69, 19, 0.85) 100%);
    --gradient-card: linear-gradient(180deg, rgba(245, 240, 232, 0.95) 0%, rgba(250, 248, 245, 1) 100%);
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
    --font-nav: 'Montserrat', sans-serif;
    --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.1);
    --shadow-medium: 0 8px 30px rgba(44, 24, 16, 0.15);
    --shadow-strong: 0 12px 40px rgba(44, 24, 16, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1rem;
    color: #444;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--color-cream);
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    font-style: italic;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(44, 24, 16, 0.98) 0%, rgba(44, 24, 16, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: 1px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    width: 25px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition);
}

.navbar-toggler:hover .toggler-bar {
    background: var(--color-gold);
}

.nav-link {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-cream) !important;
    padding: 10px 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold) !important;
}

.dropdown-menu {
    background: var(--color-primary);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--border-radius);
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: var(--shadow-strong);
}

.dropdown-item {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    color: var(--color-cream);
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(201, 162, 39, 0.2);
    color: var(--color-gold);
}

.offcanvas {
    background: var(--color-primary);
    border-left: 3px solid var(--color-gold);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    padding: 20px;
}

.offcanvas-title {
    font-family: var(--font-heading);
    color: var(--color-cream);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas-body .nav-link::after {
    left: 0;
}

.offcanvas-body .nav-link:hover::after,
.offcanvas-body .nav-link.active::after {
    width: 50px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px 25px;
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    margin-bottom: 30px;
}

.hero-title {
    color: var(--color-cream);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(250, 248, 245, 0.9);
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-gold);
    padding: 15px 35px;
    border: 2px solid var(--color-gold);
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--color-gold);
}

.btn-secondary-custom {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-cream);
    background: transparent;
    padding: 15px 35px;
    border: 2px solid var(--color-cream);
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: var(--color-cream);
    color: var(--color-primary);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-secondary));
    margin: 0 auto 20px;
}

.section-description {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.bg-stone {
    background: var(--color-stone);
}

.bg-pattern {
    background: var(--color-cream);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.castle-card {
    background: var(--color-cream);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.castle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.castle-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.castle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.castle-card:hover .castle-card-image img {
    transform: scale(1.1);
}

.castle-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: var(--font-nav);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-cream);
    background: var(--color-secondary);
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.castle-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.castle-card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.castle-card-meta {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.castle-card-text {
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.castle-card-link {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.castle-card-link::after {
    content: '\2192';
    transition: var(--transition);
}

.castle-card-link:hover {
    color: var(--color-gold);
}

.castle-card-link:hover::after {
    transform: translateX(5px);
}

.feature-box {
    background: var(--color-cream);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.feature-box:hover {
    border-bottom-color: var(--color-gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-stone);
    border-radius: 50%;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-item {
    background: var(--color-cream);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--color-stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 28px;
    height: 28px;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.page-hero {
    background: var(--gradient-hero);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--color-cream);
    margin-bottom: 15px;
}

.page-hero p {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: rgba(250, 248, 245, 0.85);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    background: var(--color-stone);
    padding: 15px 0;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item {
    font-family: var(--font-nav);
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--color-secondary);
}

.breadcrumb-item.active {
    color: #666;
}

.article-content {
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body p {
    text-align: justify;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
    color: #555;
}

.article-image {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    background: var(--color-stone);
    padding: 15px 20px;
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--color-cream);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.sidebar-box h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-stone);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-stone);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    font-size: 0.95rem;
    color: #555;
    display: block;
}

.sidebar-list a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.contact-section {
    padding: 60px 0;
}

.contact-info-box {
    background: var(--color-cream);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-info-box h3 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-stone);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--color-stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 22px;
    height: 22px;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.contact-details a {
    color: var(--color-secondary);
}

.map-container {
    background: var(--color-stone);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 40px;
}

.map-placeholder img {
    width: 100px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.map-placeholder p {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    color: #888;
    font-style: italic;
}

.policy-content {
    padding: 60px 0;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    color: #555;
}

.site-footer {
    background: var(--color-primary);
    color: var(--color-cream);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    color: var(--color-cream);
    margin-bottom: 0;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.8;
}

.footer-top h4 {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding: 25px 0;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: 0;
}

.update-date {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    padding: 25px 0;
    z-index: 9998;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    font-size: 1.1rem;
    color: var(--color-cream);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--color-gold);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-accept {
    background: var(--color-gold);
    color: var(--color-primary);
}

.btn-accept:hover {
    background: #b89020;
}

.btn-reject {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid var(--color-cream);
}

.btn-reject:hover {
    background: var(--color-cream);
    color: var(--color-primary);
}

.btn-necessary {
    background: var(--color-secondary);
    color: var(--color-cream);
}

.btn-necessary:hover {
    background: #7a3c10;
}

.highlight-box {
    background: linear-gradient(135deg, var(--color-stone) 0%, var(--color-cream) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-gold);
    margin: 30px 0;
}

.highlight-box h4 {
    margin-bottom: 15px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
}

.team-section {
    padding: 60px 0;
}

.team-card {
    background: var(--color-cream);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-stone);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-role {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .stats-row {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 280px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .btn-cookie {
        flex: 1;
        min-width: 120px;
    }
    
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 20px;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
}
