html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
  }
  
  header {
    background-color: #0072CE;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .logo {
    height: 60px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  .hero {
    background-color: #F8A531;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .content-section {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: auto;
  }
  
  .content-section h2 {
    color: #0072CE;
  }
  
  footer {
    background-color: #0072CE;
    color: white;
    text-align: center;
    padding: 1rem;
  }

  .mayor-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .mayor-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #F8A531;
  }

  .view-map-section {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #F8A53110;
  }
  
  .map-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #0072CE;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .map-button:hover {
    background-color: #005ca3;
  }  
  
  @media (min-width: 768px) {
    .mayor-container {
      flex-direction: row;
      text-align: left;
    }
  
    .mayor-photo {
      margin-right: 1.5rem;
    }
  }
  