* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body .wcc-consent-container {
    max-width: 600px;
    width: 100%;
}
fieldset{
    border: none;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.hero-banner {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-banner {
        height: 300px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

.main-menu a:focus,
.mobile-menu a:focus,
.footer-menu a:focus,
.social-icon:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #000;
    outline-offset: 4px;
}
@media (max-width: 576px) {
    .wcc-preference-center {
        max-height: 90vh;
    }
}