* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fffbe6;
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background: url('./img/background.jpg') no-repeat center/cover;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  header .overlay {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 15px;
  }
  
  header h1 {
    font-size: 4em;
    margin-bottom: 20px;
  }
  
  header p {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  
  header .btn {
    padding: 15px 30px;
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease;
  }
  
  header .btn:hover {
    background-color: #ffe066;
  }
  
  .features {
    padding: 60px 20px;
    background-color: #fef9e7;
    text-align: center;
  }
  
  .features h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
  }
  
  .cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 280px;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-8px);
  }
  
  .card img {
    width: 60px;
    margin-bottom: 15px;
  }
  
  .gallery {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .gallery h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
  }
  
  .images {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .images img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .images img:hover {
    transform: scale(1.05);
  }
  
  footer {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
  }
  