[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
}

.wave-divider {
    display: block;
    width: 100%;
    height: auto;
}

.angled-divider {
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, #ffffff 49.9%, #f0f9ff 50%);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #06b6d4;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-scrolled {
    position: relative;
}

.nav-link-scrolled::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #06b6d4;
    transition: width 0.3s ease;
}

.nav-link-scrolled:hover::after {
    width: 100%;
}

#navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#navbar.scrolled .nav-link {
    color: #082f49;
}

#navbar.scrolled .nav-link:hover {
    color: #06b6d4;
}

input.error,
textarea.error,
select.error {
    border-color: #ef4444 !important;
    background-color: #fee2e2;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    color: #082f49;
    margin: 0;
}

.cookie-content a {
    color: #06b6d4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-accept {
    background-color: #06b6d4;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #0369a1;
}

.cookie-decline {
    background-color: #f0f9ff;
    color: #0c4a6e;
    border: 2px solid #0c4a6e;
}

.cookie-decline:hover {
    background-color: #e0f2fe;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .cookie-buttons {
        flex-shrink: 0;
    }
}

.swiper {
    width: 100%;
    padding-bottom: 3rem;
}

.swiper-pagination-bullet {
    background-color: #06b6d4;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .angled-divider {
        height: 40px;
    }
}