:root {
    --dark-blue: #0a2540;
    --dark-blue-light: #1a365d;
    --warning: #ffd700;
    --warning-dark: #e6c200;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}


.alert-bar {
    position: relative;
    z-index: 1030;
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}


.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}


.hero-section {
    padding: 100px 0;
    background-color: var(--dark-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(10, 37, 64, 0.8) 0%, rgba(26, 54, 93, 0.9) 100%);
    z-index: 0;
}

.video-thumbnail {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-button i {
    font-size: 4rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.play-button:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.stars {
    color: var(--warning);
}


.divider {
    width: 80px;
    height: 4px;
}


.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-box-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}


.benefit-item {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}


.pricing-box {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.map-container {
    height: 300px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}


.form-control, .form-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 0.25rem rgba(10, 37, 64, 0.25);
}

.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
    color: var(--dark-blue);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
}

.btn-warning:hover {
    background-color: var(--warning-dark);
    border-color: var(--warning-dark);
    color: var(--dark-blue);
}

.btn-dark-blue {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
}

.btn-dark-blue:hover {
    background-color: var(--dark-blue-light);
    border-color: var(--dark-blue-light);
    color: white;
}

.btn-outline-light {
    border-width: 2px;
}


section {
    padding: 80px 0;
}


@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section::before {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .social-buttons .btn {
        width: auto;
    }
}