/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* Efecto de agua */
.water-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f3f4f6, #ffffff);
    z-index: -1;
}

/* Header y navegación */
header {
    background-color: rgba(13, 71, 161, 0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-menu {
    display: flex;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(to right, 
        rgba(13, 71, 161, 0.9),
        rgba(13, 71, 161, 0.8));
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.logo-container .logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-section .logo-image {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    box-shadow: 
        0 2px 3px rgba(0,0,0,0.3),
        inset 0 1px rgba(255,255,255,0.1),
        inset 0 -1px rgba(0,0,0,0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
    margin: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    transform: translateZ(-1px);
    border-radius: 0;
}

.nav-links li:first-child a {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.nav-links li:last-child a {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.nav-links a:hover {
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    transform: translateY(-2px) translateZ(10px);
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.3),
        inset 0 1px rgba(255,255,255,0.2),
        inset 0 -1px rgba(0,0,0,0.2);
}

.nav-links a:active {
    transform: translateY(1px);
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.3),
        inset 0 1px rgba(255,255,255,0.1),
        inset 0 -1px rgba(0,0,0,0.2);
}

/* Estilos para la frase discreta */
.subtitle-banner {
    background-color: rgba(13, 71, 161, 0.05);
    text-align: center;
    padding: 0.5rem 0;
    margin-top: 60px;
    border-bottom: 1px solid rgba(13, 71, 161, 0.1);
}

.subtitle-banner p {
    color: #000000;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

/* Contenido principal */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a73e8;
    text-align: center;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 2rem;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 0.5rem;
}

section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

ul li:before {
    content: "•";
    color: #1a73e8;
    position: absolute;
    left: 0;
}

/* Formulario de contacto */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1), rgba(13, 71, 161, 0.05));
    border-radius: 8px;
}

.contact-info h3 {
    color: #0d47a1;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #0d47a1;
}

.info-item p {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d47a1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(13, 71, 161, 0.1);
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background: #0d47a1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.success-message {
    display: none;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    text-align: center;
    color: white;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: #0d47a1;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-section p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Iconos */
.icon-phone::before { content: "📞"; }
.icon-email::before { content: "✉️"; }
.icon-location::before { content: "📍"; }
.icon-hours::before { content: "⏰"; }
.icon-facebook::before { content: "📱"; }
.icon-twitter::before { content: "🐦"; }
.icon-linkedin::before { content: "💼"; }
.icon-instagram::before { content: "📸"; }

/* Responsive */
@media (max-width: 768px) {
    /* Ajustes para el header y navegación */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(13, 71, 161, 0.95);
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        padding: 0.5rem;
    }

    .logo-container {
        padding: 0.3rem;
        width: 100%;
        position: relative;
    }

    .logo-container .logo-image {
        max-height: 45px;
        max-width: 80%;
        margin: 0 auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        width: 100%;
        margin: 0.3rem 0;
    }

    .nav-links a {
        display: block;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.9rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    /* Botón de menú móvil */
    .menu-toggle {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px 0;
        transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Ajuste del contenido principal para el menú móvil */
    .main-content {
        margin-top: 80px;
    }

    section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Ajustes para el formulario de contacto */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .g-recaptcha {
        margin: 15px 0;
    }
    
    @media screen and (max-width: 480px) {
        .g-recaptcha {
            transform: scale(0.85);
            transform-origin: left center;
        }
    }
    
    .success-message {
        display: none;
        padding: 10px;
        margin: 10px 0;
        border-radius: 4px;
        text-align: center;
        color: white;
    }

    /* Ajustes para las secciones de servicios */
    .service-group {
        padding: 1rem;
    }

    .service-group h3 {
        font-size: 1.2rem;
    }

    /* Ajustes para el footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    /* Ajustes para la sección de noticias */
    .news-section {
        padding: 1rem;
    }

    .news-section h3 {
        font-size: 1.2rem;
    }

    .news-list li,
    .rejection-list li,
    .obligations-list li {
        margin-bottom: 0.5rem;
    }
}

/* Media Queries para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        padding: 1rem 2rem;
    }

    .main-content {
        padding: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
    .logo-container {
        padding: 0.2rem;
    }

    .logo-container .logo-image {
        max-height: 40px;
        max-width: 70%;
    }

    .nav-links a {
        padding: 0.4rem;
        font-size: 0.85rem;
    }

    section {
        padding: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }

    .submit-btn {
        padding: 0.8rem;
    }

    .menu-toggle {
        top: 0.3rem;
        right: 0.3rem;
    }
}

/* Ajustes para mejorar la legibilidad en móviles */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    .main-content {
        padding: 1rem;
        margin-top: 60px;
        width: 100%;
        box-sizing: border-box;
    }

    section {
        padding: 1.2rem;
        margin: 0 0 1.5rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: justify;
        hyphens: auto;
        word-wrap: break-word;
    }

    .service-group {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-group h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-group ul {
        padding-left: 1.2rem;
    }

    .service-group li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .news-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .news-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .news-list li,
    .rejection-list li,
    .obligations-list li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        padding-left: 1.2rem;
    }

    .contact-container {
        padding: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .info-item {
        margin-bottom: 0.8rem;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .commitment {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 1rem;
        margin: 1.5rem 0;
    }

    /* Ajustes para pantallas muy pequeñas */
    @media (max-width: 480px) {
        body {
            font-size: 15px;
        }

        .main-content {
            padding: 0.8rem;
        }

        section {
            padding: 1rem;
        }

        h1 {
            font-size: 1.6rem;
        }

        h2 {
            font-size: 1.3rem;
        }

        h3 {
            font-size: 1.1rem;
        }

        p {
            font-size: 0.95rem;
        }

        .service-group li,
        .news-list li,
        .rejection-list li,
        .obligations-list li {
            font-size: 0.9rem;
        }
    }
}

#inicio {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(45deg, rgba(13, 71, 161, 0.1), rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    margin-bottom: 3rem;
}

#inicio h1 {
    font-size: 3rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

#inicio h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

#inicio p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

#inicio a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #0d47a1;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#inicio a:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-group {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-group h3 {
    color: #0d47a1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #0d47a1;
    padding-bottom: 0.5rem;
}

.service-group ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.service-group li {
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.service-group li:before {
    content: "•";
    color: #0d47a1;
    position: absolute;
    left: -1.5rem;
}

.commitment {
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(13, 71, 161, 0.05);
    border-radius: 8px;
    border-left: 4px solid #0d47a1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment::before {
    content: '"';
    font-size: 2rem;
    color: #0d47a1;
    opacity: 0.5;
    margin-right: 0.5rem;
}

.commitment::after {
    content: '"';
    font-size: 2rem;
    color: #0d47a1;
    opacity: 0.5;
    margin-left: 0.5rem;
}

#fiscal {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.05), rgba(13, 71, 161, 0.02));
    padding: 3rem 2rem;
}

#fiscal h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0d47a1;
    font-size: 2rem;
}

#fiscal > p:first-of-type {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

#laboral > p {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

#laboral > p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0d47a1;
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

#laboral > p:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#laboral > p:last-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(13, 71, 161, 0.03);
    border-radius: 8px;
    border-left: 3px solid #0d47a1;
}

#civil > p {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

#civil > p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0d47a1;
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

#civil > p:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#civil > p:last-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(13, 71, 161, 0.03);
    border-radius: 8px;
    border-left: 3px solid #0d47a1;
}

#mercantil > p {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

#mercantil > p:first-of-type {
    font-size: 1.3rem;
    font-weight: 500;
    color: #0d47a1;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(13, 71, 161, 0.03);
    border-radius: 8px;
    border-left: 4px solid #0d47a1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#mercantil > p:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(13, 71, 161, 0.1);
}

#mercantil > p:last-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(13, 71, 161, 0.03);
    border-radius: 8px;
    border-left: 3px solid #0d47a1;
}

#municipal > p {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

#municipal > p:first-of-type {
    font-size: 1.3rem;
    font-weight: 500;
    color: #0d47a1;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(13, 71, 161, 0.03);
    border-radius: 8px;
    border-left: 4px solid #0d47a1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#municipal > p:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(13, 71, 161, 0.1);
}

#municipal > p:nth-of-type(3) {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(13, 71, 161, 0.03);
    border-radius: 8px;
    border-left: 3px solid #0d47a1;
}

#deportivo > p {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

#deportivo > p:first-of-type {
    font-size: 1.3rem;
    font-weight: 500;
    color: #0d47a1;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(13, 71, 161, 0.03);
    border-radius: 8px;
    border-left: 4px solid #0d47a1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#deportivo > p:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(13, 71, 161, 0.1);
}

/* Estilos para la sección de noticias */
.news-title {
    text-align: center;
    color: #0d47a1;
    margin: 2rem 0;
    font-size: 1.8rem;
    border-bottom: 2px solid #0d47a1;
    padding-bottom: 0.5rem;
}

.news-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-section h3 {
    color: #0d47a1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-section h4 {
    color: #333;
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.news-list, .rejection-list, .obligations-list {
    list-style-type: none;
    padding-left: 1.5rem;
}

.news-list li, .rejection-list li, .obligations-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    position: relative;
}

.news-list li:before, .rejection-list li:before, .obligations-list li:before {
    content: "•";
    color: #0d47a1;
    position: absolute;
    left: -1.5rem;
}

.news-section p {
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.news-section strong {
    color: #0d47a1;
    font-weight: 600;
} 