* {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-section {
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.error-message {
    display: none;
}

.error-message.active {
    display: block;
}

input.error,
textarea.error,
select.error {
    border-color: #ef4444;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

a {
    transition: color 0.2s ease;
}

button {
    transition: background-color 0.2s ease;
}

.container {
    max-width: 1200px;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

#cookie-banner.show {
    display: block;
}

#cookie-banner .cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    #cookie-banner .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

#cookie-banner p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

#cookie-banner .cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

#cookie-banner button {
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-size: 0.875rem;
}

.cookie-btn-primary {
    background-color: #2563eb;
    color: white;
}

.cookie-btn-primary:hover {
    background-color: #1d4ed8;
}

.cookie-btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}