body {
    font-family: 'Inter', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

.text-primary {
    color: #0056b3 !important;
}

.text-success {
    color: #28a745 !important;
}

.bg-primary {
    background-color: #0056b3 !important;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.hero-section {
    background: linear-gradient(135deg, #0056b3 0%, #00a8ff 100%);
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-image-container img {
    border: 8px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image-container img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(0, 86, 179, 0.05);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 86, 179, 0.05);
    color: #0056b3;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.1);
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero-image-container img {
        transform: none;
    }
}
