/* Base styles copied from index.html for consistency */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      body {
        color: #333;
        background-color: #f9f9f9;
        line-height: 1.6;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      /* Header Styles (Simplified for News Page) */
      header {
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 1000;
        position: relative;
      }

      .header-container {
        display: flex;
        gap: 15px;
        justify-content: flex-start;
        align-items: center;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        min-height: 90px;
      }

      /* Contenedor del teléfono a la derecha */
.header-phone-right {
    margin-left: 20px; /* Separación con el botón de Citas */
    padding-left: 20px;
    border-left: 1px solid #ddd; /* Línea separadora sutil a la izquierda */
    display: flex;
    align-items: center;
}

/* Estilo del enlace */
.header-phone-right a {
    text-decoration: none;
    color: #2c3e50; /* Tu azul oscuro */
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* Evita que el número se parta en dos líneas */
}

/* Efecto Hover */
.header-phone-right a:hover {
    color: #42b44d; /* Tu verde corporativo */
}

.header-phone-right i {
    color: #42b44d;
}

/* OCULTAR EN MÓVILES */
/* Importante: En pantallas pequeñas no cabe a la derecha, mejor ocultarlo */
@media (max-width: 1200px) {
    .header-phone-right {
        display: none;
    }
}

      .logo a {
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo-img {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        background-color: transparent;
        border-radius: 10px;
        padding: 0;
        box-shadow: none;
      }

      .logo-img img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 5px;
      }

      .logo-text {
        font-size: 30px;
        font-weight: bold;
        color: #2c3e50;
      }

      .logo-text span {
        color: #42b44d;
      }

      nav {
        margin-left: auto;
      }

      nav ul {
        display: flex;
        list-style: none;
        align-items: center;
        gap: 15px;
      }

      nav ul li {
        margin-left: 0;
        position: relative;
      }

      nav ul li a.nav-link {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.3s;
        padding: 8px 12px;
        border-radius: 4px;
        position: relative;
        display: block;
      }

      nav ul li a.nav-link:after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: #42b44d;
        left: 0;
        bottom: 0;
        transition: width 0.3s;
      }

      nav ul li a.nav-link:hover:after {
        width: 100%;
      }

      nav ul li a.nav-link:hover {
        color: #42b44d;
      }

      .btn-app {
        background-color: #42b44d;
        color: white !important;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
        box-shadow: 0 2px 5px rgba(66, 180, 77, 0.3);
      }

      .btn-app:hover {
        background-color: #369440;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(66, 180, 77, 0.4);
        color: white;
      }
      
      .btn-app:after {
        display: none !important;
      }

      .btn-app i {
        font-size: 1rem;
      }

      .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #2c3e50;
        margin-left: auto;
        padding: 10px;
        order: 2;
      }

      /* FLOATING BUTTONS */
      .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 20px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
      }
      .whatsapp-float:hover { transform: scale(1.1); }

      .btn-float-download {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 90px;
        left: 20px;
        background-color: #42b44d;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(66, 180, 77, 0.4);
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s, transform 0.3s;
      }
      .btn-float-download:hover { background-color: #369440; transform: scale(1.1); }

      /* Navigation for News Page */
      .back-link a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 600;
        padding: 10px 20px;
        border: 2px solid #42b44d;
        border-radius: 50px;
        transition: all 0.3s;
      }

      .back-link a:hover {
        background-color: #42b44d;
        color: #fff;
      }

      /* News Content Styles */
      .news-section {
        padding: 80px 0;
        min-height: 80vh;
      }

      .news-section h1 {
        text-align: center;
        font-size: 3rem;
        color: #2c3e50;
        margin-bottom: 60px;
      }

      .news-article {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 40px;
        margin-bottom: 40px;
        display: flex;
        gap: 30px;
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .news-image {
        flex: 1;
        min-width: 300px;
        max-width: 450px;
      }

      .news-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
        border: 1px solid #ddd;
      }

      .news-image a {
        display: block;
        cursor: pointer;
      }

      .news-text {
        flex: 2;
        min-width: 300px;
      }

      .news-text h2 {
        font-size: 2.2rem;
        color: #42b44d;
        margin-bottom: 15px;
      }

      .news-text .date {
        display: block;
        color: #7f8c8d;
        font-size: 0.9rem;
        margin-bottom: 20px;
      }

      .news-text p {
        font-size: 1.1rem;
        margin-bottom: 15px;
      }

      /* Footer Styles (Copied from index.html for consistency) */
      footer {
        background: #2c3e50;
        color: #fff;
        padding: 40px 0 20px;
      }

      .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }

      .footer-section {
        flex: 1;
        min-width: 300px;
        margin-bottom: 30px;
        padding-right: 20px;
      }

      .footer-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        color: #fff;
      }

      .footer-section h3::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background: #42b44d;
        bottom: 0;
        left: 0;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 10px;
      }

      .footer-section ul li a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-section ul li a:hover {
        color: hsl(126, 46%, 48%);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      @media (max-width: 768px) {
        .news-article {
          flex-direction: column;
        }
        .news-image {
          max-width: 100%;
        }
      }