:root {
    --primary: #1a365d;
}

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

.bg-black {
    background-color: #000000;
}

.text-primary {
    color: var(--primary);
}

.hero-section {
    background-image: url('img/ezgif-5-24ecfc498f.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    position: relative;
    width: 90%;
    max-width: 500px;
}

.hidden {
    display: none;
} 