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

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

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

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.desktop-nav {
    display: block;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .desktop-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 50;
        padding-bottom: env(safe-area-inset-bottom);
    }

    body {
        padding-bottom: 80px;
    }
}

.footer-with-accent {
    margin-top: auto;
}

.accent-bar {
    width: 100%;
}

.full-width-divider {
    width: 100%;
    overflow: hidden;
}

.full-width-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-process {
    position: relative;
}

.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.cookie-consent {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

@media (min-width: 1024px) {
    .circular-process .process-step:nth-child(1) {
        animation: fadeIn 0.5s ease-out 0.1s both;
    }
    .circular-process .process-step:nth-child(2) {
        animation: fadeIn 0.5s ease-out 0.2s both;
    }
    .circular-process .process-step:nth-child(3) {
        animation: fadeIn 0.5s ease-out 0.3s both;
    }
    .circular-process .process-step:nth-child(4) {
        animation: fadeIn 0.5s ease-out 0.4s both;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.collapse {
    transition: all 0.3s ease;
}

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

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.drawer-side {
    z-index: 999;
}

.drawer-overlay {
    z-index: 998;
}

@media (max-width: 768px) {
    .hero-glassmorphism {
        min-height: 500px;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}

.prose {
    max-width: 100%;
}

.prose h2 {
    margin-top: 0;
}

.prose ul {
    margin-top: 0.5rem;
}