body {
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    background-color: #003366;
    color: white;
    padding: 100px 0;
}

.btn-orange {
    background-color: #FF6600;
    color: white;
}

.btn-orange:hover {
    background-color: #e65c00;
    color: white;
}

.section-title {
    color: #003366;
    margin-bottom: 40px;
}

.service-card,
.benefit-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: none;
}

footer {
    background: #333;
    color: white;
    padding: 50px 0;
}

footer a {
    color: #FF6600;
}

.logo-header {
    height: 60px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    background-color: #003366;
    color: white;
    padding: 100px 0;
    text-align: center;
}

/* Mejor espaciado entre logo y título en el header */
.hero .header-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero .header-branding {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}

/* Footer logo */
.logo-footer {
    max-height: 50px;
    width: auto;
}