/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
  }
  
  header {
    background-color: #1a1a1a;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
  }
  
  header h1 {
    font-size: 2.5rem;
  }
  
  header p {
    font-size: 1.1rem;
    color: #cccccc;
  }
  
  nav ul {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 0 1rem;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    color: #ff9900;
  }
  
  /* Hero Section */
  #hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
  }
  
  #hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  #hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    background-color: #ff9900;
    padding: 0.75rem 2rem;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background-color: #e68a00;
  }
  
  /* Section Style */
  .section {
    padding: 4rem 2rem;
    background-color: white;
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  
  /* About */
  #about ul {
    margin-top: 1rem;
    list-style-type: disc;
    padding-left: 1.5rem;
  }
  
  /* Services */
  .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .service {
    flex: 1 1 300px;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
  }
  
  /* Gallery */
  .images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .images img {
    max-width: 100%;
    height: auto;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Testimonials */
  blockquote {
    font-style: italic;
    margin: 1rem 0;
    border-left: 4px solid #ff9900;
    padding-left: 1rem;
  }
  
  blockquote footer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
  }
  
  /* Contact Form */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  input, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button[type=\"submit\"] {
    background-color: #1a1a1a;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button[type=\"submit\"]:hover {
    background-color: #333;
  }
  
  /* Cookie Banner */
  #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
  }
  
  #cookie-banner button {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    background: #ff9900;
    color: white;
    cursor: pointer;
    border-radius: 4px;
  }
  
  #cookie-banner button:hover {
    background: #e68a00;
  }
  
  /* Footer */
  footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .service-list {
      flex-direction: column;
    }
  
    .images {
      flex-direction: column;
      align-items: center;
    }
  
    #cookie-banner {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  }
  