<style>
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      color: #333;
      line-height: 1.6;
    }

    header {
      background: url('images/turquoise.png') no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 4rem 1rem;
    }

    nav {
      background-color: #0050CC;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav a {
      color: white;
      padding: 1rem;
      text-decoration: none;
      display: block;
    }

    nav a:hover {
      background-color: #808080;
    }

    .container {
      padding: 2rem 1rem;
      max-width: 1100px;
      margin: auto;
    }

    h1 {
      text-align: center;
      margin-top: 2rem;
    }

    h2 {
      text-align: center;
      margin-top: 2rem;
    }

  .alert {
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
	}
	  
  .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
	}
	  
  .alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .card {
      background: white;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 10px;
      margin-top: 1.5rem;
    }

    .gallery img {
      width: 100%;
      border-radius: 8px;
      height: 200px;
      object-fit: cover;
    }

    footer {
      text-align: center;
      padding: 1rem;
      background-color: #0050CC;
      color: white;
      margin-top: 2rem;
    }

    @media (max-width: 600px) {
      header {
        padding: 2rem 1rem;
      }
    }
  </style>