:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --whatsapp-color: #25D366;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
.bg-law {
    background-color: var(--primary-color);
    color: white;
}
.text-law {
    color: var(--primary-color);
}
.btn-law {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}
.btn-law:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}
.navbar {
    transition: all 0.3s ease;
}
.navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#inicio {
    background-image: url('/images/San_Jose_Sabana.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}
#inicio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 62, 80, 0.7);
}
#inicio .container {
    position: relative;
    z-index: 1;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.img-fluid {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
    display: block;
}
.service-list {
    list-style-type: none;
    padding-left: 0;
}
.service-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.service-list .material-icons {
    margin-right: 0.5rem;
    font-size: 24px;
    color: var(--secondary-color);
}
.whatsapp-button-banner {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: #000f29;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.whatsapp-button-banner:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
}
.whatsapp-button-banner .material-icons {
    margin-right: 10px;
    font-size: 24px;
}
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: var(--whatsapp-color);
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
}
.whatsapp-button .material-icons {
    margin-right: 10px;
    font-size: 24px;
}
.flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
}
#sobre-nosotros {
    background: linear-gradient(to right, #001f3f, #0074D9);
    color: white;
}
#sobre-nosotros h2 {
    color: white;
}
@media (max-width: 768px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    .lead {
        font-size: 1rem;
    }
    .whatsapp-button {
        font-size: 16px;
        padding: 8px 15px;
    }
}