body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #333;
  }

  header {
    background: #ffffff;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
  }
  
  .logo img {
    max-height: 60px;
  }
  
  .header-button .btn-order {
    background-color: #F7AC29;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .header-button .btn-order:hover {
    background-color: #F7AC29;
  }
  
  
  .logo img {
    max-width: 160px;
    height: auto;
  }
  
  
  main.container {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    background: white;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  main.container h1 {
    font-size: 2rem;
    color: #203556;
  }
  
  main.container p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  footer {
    background: #203556;
    padding: 2rem 1rem;
    margin-top: 2rem;
    color: white;
    text-align: center;
  }
  
  footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  footer nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  

  