body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff8f0;
    color: #333;
  }
  
  header {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size: cover;
    background-position: center;
    height: 90vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    text-align: center;
    padding: 20px;
  }
  
  header h1 {
    font-size: 4em;
    margin: 0;
  }
  
  header p {
    font-size: 1.5em;
    margin-top: 10px;
    font-style: italic;
  }
  
  .buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .button {
    background-color: #f2b035; /* portokalli i lehtë */
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #d99b00; /* më e errët në hover */
  }
  
  section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  
  .about img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
  }
  
  .service {
    background: #fdf3e7;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .service img {
    width: 100%;
    max-width: 180px;
    border-radius: 12px;
    object-fit: cover;
  }
  
  footer {
    background: #cc7722;
    color: white;
    text-align: center;
    padding: 20px;
  }


