* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3a8a;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

html {
    scroll-behavior: smooth;
}

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

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

form input[type="text"],
form input[type="email"],
form textarea,
form select {
    transition: all 0.3s ease;
}

form input[type="text"]:hover,
form input[type="email"]:hover,
form textarea:hover,
form select:hover {
    border-color: #1e3a8a;
}

.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}
