* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  body {
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
  }
  
  header {
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  
  .logo {
    font-weight: bold;
    color: #e96b1c;
  }
  
  nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
  }
  
  .hero {
    padding: 80px 0;
    text-align: center;
    background: #fff;
  }
  
  .hero h1 {
    color: #e96b1c;
    margin-bottom: 15px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section.light {
    background: #f9f9f9;
  }
  
  h2 {
    margin-bottom: 20px;
    color: #e96b1c;
  }
  
  .services {
    list-style: disc;
    padding-left: 20px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  form button {
    background: #e96b1c;
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
  }
  
  .consent {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 30px;
  }
  
  footer {
    background: #111;
    color: #fff;
    padding: 20px 0;
  }
  
  .footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  footer a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  