body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #ffffff;
}

.text-primary-custom {
    color: #24417C !important;
}

.bg-primary-custom {
    background-color: #24417C !important;
}

.text-danger-custom {
    color: #d1121d !important; /* Retaining red for accents as per original logo if needed, but the web uses orange/peach #FFE8DA  */
}

.text-accent-custom {
    color: #ff6900 !important;
}

.bg-accent-light-custom {
    background-color: #FFE8DA !important;
}

.bg-danger-custom {
    background-color: #d1121d !important;
}

.bg-light-blue-custom {
    background-color: #F7FAFD !important;
}

.shadow-custom {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.05);
}

.rounded-custom {
    border-radius: 40px !important;
}

.card-service {
    transition: transform 0.3s ease;
    border-radius: 30px;
    border: 2px solid #F7FAFD;
    box-shadow: none;
    background-color: white;
}

.card-service:hover {
    transform: translateY(-5px);
    background-color: #F7FAFD;
    border-color: #F7FAFD;
}

.hero-section {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.navbar-brand img {
    border-radius: 0;
}

.nav-link {
    color: #24417C;
    font-weight: 600;
}
.nav-link:hover {
    color: #3a5da5;
}

.footer-section {
    background-color: #24417C;
    color: white;
    font-weight: 400;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}
.footer-section .text-primary-custom {
    color: white !important;
}
.footer-section .text-dark {
    color: #e2e8f0 !important;
}
.footer-section .text-muted {
    color: #cbd5e1 !important;
}

.btn-custom {
    background-color: #24417C;
    color: white;
    border-radius: 100px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #FFE8DA;
    color: #24417C;
}

.btn-outline-custom {
    border: 2px solid #24417C;
    color: #24417C;
    border-radius: 100px;
    padding: 10px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: #24417C;
    color: white;
}
