:root {
      --gold: #c19b76;
      --black: #000;
      --white: #fff;
      --gray: #f5f5f5;
    }
    body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      color: var(--black);
      line-height: 1.6;
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5%;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .logo img { height: 40px; }
    .nav-links a {
      color: var(--black);
      text-decoration: none;
      margin: 0 15px;
      font-weight: 500;
    }
    .nav-links a:hover { color: var(--gold); }
    .hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
    }
    .hero-content { max-width: 800px; padding: 0 20px; }
    h1 { font-size: 2.8rem; margin-bottom: 20px; }
    .btn {
      background: var(--gold);
      color: var(--white);
      padding: 12px 30px;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin: 10px;
      transition: 0.3s;
    }
    .btn:hover { opacity: 0.9; transform: translateY(-2px); }
    .section {
      padding: 80px 5%;
      text-align: center;
    }
    .section-title { font-size: 2.2rem; margin-bottom: 50px; }
    .company-card {
      background: var(--white);
      border-radius: 8px;
      padding: 30px;
      margin: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      display: inline-block;
      width: 300px;
      vertical-align: top;
    }
    .contact-info { margin: 20px 0; }
    .contact-info i {
      color: var(--gold);
      margin-right: 10px;
    }
    footer {
      background: var(--black);
      color: var(--white);
      text-align: center;
      padding: 30px;
    }