   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   body {
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       background-color: #f9fafb;
       color: #1f2937;
   }

   /* Navigation */
   nav {
       background: linear-gradient(135deg, #059669 0%, #047857 100%);
       color: white;
       padding: 1rem 2rem;
       box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   }

   .nav-container {
       max-width: 1200px;
       margin: 0 auto;
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .logo {
       display: flex;
       align-items: center;
       gap: 1rem;
   }

   .logo-icon {
       /* background: white; */
       padding: 0.5rem;
       border-radius: 8px;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .logo-icon img {
       width: 40px;
       height: 40px;
   }

   .logo h1 {
       font-size: 1.5rem;
       font-weight: bold;
   }

   .nav-links {
       display: flex;
       gap: 1.5rem;
       list-style: none;
   }

   .nav-links a {
       color: white;
       text-decoration: none;
       padding: 0.5rem 1rem;
       border-radius: 8px;
       transition: background 0.3s;
   }

   .nav-links a:hover,
   .nav-links a.active {
       background: rgba(255, 255, 255, 0.2);
   }

   /* Main Content */
   main {
       max-width: 1200px;
       margin: 0 auto;
       padding: 2rem;
   }

   /* Alert Banner */
   .alert-banner {
       background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
       color: white;
       padding: 2rem;
       border-radius: 16px;
       margin-bottom: 2rem;
       text-align: center;
       box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
   }

   .alert-banner h2 {
       font-size: 2.5rem;
       margin-bottom: 0.5rem;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 1rem;
   }

   .alert-icon {
       font-size: 3rem;
       animation: pulse 2s infinite;
   }

   .alert-icon img {
       width: 50px;
       height: 50px;
   }

   @keyframes pulse {

       0%,
       100% {
           transform: scale(1);
       }

       50% {
           transform: scale(1.1);
       }
   }

   .alert-banner p {
       font-size: 1.2rem;
       opacity: 0.95;
   }

   /* Emergencia Grid */
   .emergency-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 1.5rem;
       margin-bottom: 2rem;
   }

   /* Emergency Card */
   .emergency-card {
       background: white;
       border-radius: 16px;
       padding: 2rem;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
       transition: all 0.3s;
       border: 3px solid;
   }

   .emergency-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   }

   .emergency-card-red {
       border-color: #dc2626;
   }

   .emergency-card-orange {
       border-color: #ea580c;
   }

   .emergency-card-blue {
       border-color: #2563eb;
   }

   .emergency-card-green {
       border-color: #059669;
   }

   .emergency-icon img.emergency-img {
       width: 40px;
       height: 40px;
       object-fit: contain;
   }

   .emergency-card h3 {
       font-size: 1.5rem;
       margin-bottom: 0.5rem;
       color: #1f2937;
   }

   .emergency-number {
       font-size: 3rem;
       font-weight: bold;
       margin: 1rem 0;
   }

   .emergency-card-red .emergency-number {
       color: #dc2626;
   }

   .emergency-card-orange .emergency-number {
       color: #ea580c;
   }

   .emergency-card-blue .emergency-number {
       color: #2563eb;
   }

   .emergency-card-green .emergency-number {
       color: #059669;
   }

   .emergency-description {
       color: #6b7280;
       margin-bottom: 1.5rem;
       font-size: 0.95rem;
   }

   .call-now-btn {
       width: 100%;
       border: none;
       padding: 1rem;
       border-radius: 8px;
       font-weight: bold;
       font-size: 1.1rem;
       cursor: pointer;
       transition: all 0.3s;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;

   }

   .call-now-btn img.call-icon {
       width: 20px;
       height: 20px;
   }

   .emergency-card-red .call-now-btn {
       background: #dc2626;
       color: white;
   }

   .emergency-card-red .call-now-btn:hover {
       background: #b91c1c;
   }

   .emergency-card-orange .call-now-btn {
       background: #ea580c;
       color: white;
   }

   .emergency-card-orange .call-now-btn:hover {
       background: #c2410c;
   }

   .emergency-card-blue .call-now-btn {
       background: #2563eb;
       color: white;
   }

   .emergency-card-blue .call-now-btn:hover {
       background: #1d4ed8;
   }

   .emergency-card-green .call-now-btn {
       background: #059669;
       color: white;
   }

   .emergency-card-green .call-now-btn:hover {
       background: #047857;
   }

   /* Tips Section */
   .tips-section {
       background: #fef3c7;
       border: 3px solid #f59e0b;
       border-radius: 16px;
       padding: 2rem;
       margin-bottom: 2rem;
   }

   .tips-section h3 {
       color: #78350f;
       font-size: 1.8rem;
       margin-bottom: 1.5rem;
       display: flex;
       align-items: center;
       gap: 0.75rem;
   }

   .tips-list {
       display: grid;
       gap: 1rem;
   }

   .tip-item {
       background: white;
       padding: 1.25rem;
       border-radius: 12px;
       border-left: 4px solid #f59e0b;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   }

   .tip-item h4 {
       color: #92400e;
       margin-bottom: 0.5rem;
       font-size: 1.1rem;
   }

   .tip-item p {
       color: #78350f;
       line-height: 1.6;
   }

   /* Hospital Contacts */
   .hospital-contacts {
       background: white;
       border: 2px solid #e5e7eb;
       border-radius: 16px;
       padding: 2rem;
   }

   .hospital-contacts h3 {
       font-size: 1.8rem;
       margin-bottom: 1.5rem;
       color: #1f2937;
   }

   .hospital-list {
       display: grid;
       gap: 1rem;
   }

   .hospital-item {
       background: #f9fafb;
       padding: 1.25rem;
       border-radius: 12px;
       border-left: 4px solid #059669;
       display: flex;
       justify-content: space-between;
       align-items: center;
       transition: all 0.3s;
   }

   .hospital-item:hover {
       background: #f0fdf4;
       transform: translateX(5px);
   }

   .hospital-info h4 {
       color: #1f2937;
       margin-bottom: 0.25rem;
   }

   .hospital-info p {
       color: #6b7280;
       font-size: 0.9rem;
   }

   .hospital-phone {
       font-weight: bold;
       color: #059669;
       font-size: 1.1rem;
   }

   /* Footer */
   footer {
       background: #1f2937;
       color: white;
       padding: 2rem;
       text-align: center;
       margin-top: 3rem;
   }

   footer p {
       margin-bottom: 0.5rem;
   }

   .footer-subtitle {
       color: #9ca3af;
       font-size: 0.9rem;
   }

   /* Responsive */
   @media (max-width: 768px) {
       .nav-container {
           flex-direction: column;
           gap: 1rem;
       }

       .nav-links {
           flex-wrap: wrap;
           justify-content: center;
           gap: 0.5rem;
       }

       main {
           padding: 1rem;
       }

       .alert-banner h2 {
           font-size: 1.8rem;
       }

       .emergency-grid {
           grid-template-columns: 1fr;
       }

       .hospital-item {
           flex-direction: column;
           text-align: center;
           gap: 0.75rem;
       }
   }