:root {
    --brand-red: #d02332;
    --brand-blue: #0386be;
    font-family: 'DM Sans', sans-serif;
}

body {
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.nav-link {
    @apply text-gray-700 hover:text-[#0386be] transition-colors duration-300 font-medium;
}

/* Updated Button Styles */
.btn-primary {
    @apply inline-flex items-center justify-center px-6 py-3 bg-[#d02332] text-white rounded-lg hover:bg-[#b01d2a] transition-all duration-300 font-semibold transform hover:scale-105 focus:outline-none focus:ring-2 focus:ring-[#d02332] focus:ring-opacity-50;
}

.btn-secondary {
    @apply inline-flex items-center justify-center px-6 py-3 bg-[#0386be] text-white rounded-lg hover:bg-[#026690] transition-all duration-300 font-semibold transform hover:scale-105 focus:outline-none focus:ring-2 focus:ring-[#0386be] focus:ring-opacity-50;
}

.btn-outline {
    @apply inline-flex items-center justify-center px-6 py-3 border-2 border-[#0386be] text-[#0386be] rounded-lg hover:bg-[#0386be] hover:text-white transition-all duration-300 font-semibold transform hover:scale-105 focus:outline-none focus:ring-2 focus:ring-[#0386be] focus:ring-opacity-50;
}

/* Hamburger Menu */
#mobile-menu-button {
    @apply block lg:hidden p-2 z-50 hover:bg-gray-100 rounded-lg transition-colors duration-300;
    min-width: 40px;
    min-height: 40px;
}

#mobile-menu-button .hamburger-line {
    @apply block transition-all duration-300;
    width: 24px;
    height: 4px;
    margin: 4px auto;
    background-color: #0386be;
}

#mobile-menu-button.active .hamburger-line:nth-child(1) {
    @apply rotate-45;
    transform-origin: center;
    margin-bottom: -4px;
}

#mobile-menu-button.active .hamburger-line:nth-child(2) {
    @apply opacity-0;
    transform: translateX(20px);
}

#mobile-menu-button.active .hamburger-line:nth-child(3) {
    @apply -rotate-45;
    transform-origin: center;
    margin-top: -4px;
}

/* Mobile Navigation */
#mobile-nav {
    @apply transition-all duration-300 transform;
}

#mobile-nav.hidden {
    @apply opacity-0 -translate-y-2;
    pointer-events: none;
}

#mobile-nav:not(.hidden) {
    @apply block fixed top-[72px] left-0 w-full bg-white shadow-lg z-40;
}

#mobile-nav .nav-link {
    @apply block px-6 py-3 text-[#0386be] hover:bg-gray-50 transition-all duration-300;
}

/* Video Background */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    filter: brightness(0.85);
}

.video-container video.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Content Container */
.hero-content {
    @apply relative z-10;
    animation: fadeUp 1s ease-out forwards;
}

/* Scroll Animations */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay Classes */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .container {
        @apply px-4;
    }
    
    #mobile-nav {
        @apply shadow-lg;
    }
    
    .nav-link {
        @apply text-lg;
    }
}

/* Basic Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}
.red-button {
    background-color: #d02332;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s;
}

.red-button:hover {
    opacity: 0.9;
}

.red-button.block {
    display: block;
    text-align: center;
}
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    filter: brightness(0.85);
}

.video-container video.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.header-scroll {
    transform: translateY(-100%);
}

.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary {
    @apply bg-[#0386be] text-white px-6 py-3 rounded-lg hover:bg-[#026690] transition-colors duration-300;
}

.nav-link {
    @apply text-gray-700 hover:text-[#0386be] transition-colors duration-300 font-bold;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.video-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}
.feature-card {
    transition: transform 0.3s ease;
}

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

.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

footer {
    background-color: #1a1a1a;
}
:root {
    --color-brand-blue: #0086be;
    --color-brand-red: #d02332;
}

/* Add to your existing Tailwind utilities */
.bg-brand-blue {
    background-color: var(--color-brand-blue);
}

.text-brand-blue {
    color: var(--color-brand-blue);
}

.bg-brand-red {
    background-color: var(--color-brand-red);
}

.text-brand-red {
    color: var(--color-brand-red);
}
body {
    font-family: DM Sans, sans-serif;
}
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 50;
    width: 90%;
    max-width: 600px;
    display: none;
}

.cookie-consent.visible {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.cookie-consent .buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-consent button {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-consent button:hover {
    opacity: 0.9;
}

.cookie-consent .accept {
    background-color: #d02332;
    color: white;
    border: none;
}

.cookie-consent .more-info {
    background-color: white;
    color: #d02332;
    border: 1px solid #d02332;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-weight: 600;
    color: #111827;
}

.accordion-header:hover {
    color: #d02332;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
}

.accordion-content.active {
    max-height: 1000px;
    padding-bottom: 1.5rem;
}

.accordion-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    color: #4B5563;
}

.faq-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}
.accordion-content a {
    transition: opacity 0.3s ease;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.accordion-content a:focus {
    outline: 2px solid #d02332;
    outline-offset: 2px;
}
.feature-card {
    transition: transform 0.3s ease;
}

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

.duty-principle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.principle-content {
    flex: 1;
}

.checkmark {
    flex-shrink: 0;
    margin-left: 1rem;
}

.duty-principle h4 {
    margin-bottom: 0.5rem;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--color-brand-blue);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-section h2 .emoji {
    font-size: 2rem;
}

.terms-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.terms-card p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-card li {
    list-style-type: disc;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.consumer-duty-card {
    @apply bg-brand-blue/5 rounded-xl p-6 border border-brand-blue/20 my-8;
}

.duty-principle {
    @apply flex items-start p-4 bg-white rounded-lg shadow-sm mb-4;
}

.duty-principle svg {
    @apply w-6 h-6 text-brand-blue mr-3 flex-shrink-0 mt-1;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--color-brand-blue);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-section h2 .emoji {
    font-size: 2rem;
}