body {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

.app-wrapper {
    width: 100%;
    min-height: 100%;
}

.primary-bg {
    background-color: #1E40AF;
}

.secondary-bg {
    background-color: #F5F316;
}

.primary-text {
    color: #1E40AF;
}

.secondary-text {
    color: #F5F316;
}

.slider {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fadeIn 0.5s;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: #1E40AF;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1E3A8A;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #F5F316;
    color: #1E40AF;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #DCDB14;
    transform: scale(1.05);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }
}

.image-cutout-bg {
    background: linear-gradient(to bottom, #f3f4f6 80%, transparent 100%);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}