* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1140px;
    margin: auto;
    padding: 0 20px;
  }
  
  header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    float: left;
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  nav ul {
    float: right;
    list-style: none;
  }
  
  nav ul li {
    display: inline-block;
    margin-left: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .hero {
    background: url('img/hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 12px 30px;
    background: #c19a6b;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .light {
    background: #f9f9f9;
  }
  
  .services-grid, .project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .service-box, .project-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .project-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: auto;
    display: grid;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
  }
  
  .contact-form button {
    background: #c19a6b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
  }
  
  footer {
    text-align: center;
    padding: 30px 0;
    background: #111;
    color: #fff;
  }
  