:root {
      --primary: #5F6F7E;
      --secondary: #929EAE;
      --light-bg: #F8FAFB;
      --dark-text: #333;
      --max-width: 1100px;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      background-color: var(--light-bg);
      color: var(--dark-text);
      line-height: 1.6;
    }

    header {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 6rem 1rem 4rem 1rem;
    }

    header h1 {
      font-family: 'Cinzel', serif;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    header p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 1.5rem auto;
    }

    .btn {
      display: inline-block;
      background: white;
      color: var(--primary);
      text-decoration: none;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      font-weight: 600;
      transition: background 0.3s;
    }

    .btn:hover {
      background: var(--secondary);
      color: white;
    }

    section {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 4rem 1rem;
    }

    section h2 {
      font-family: 'Cinzel', serif;
      color: var(--primary);
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .service {
      background: white;
      border-radius: 6px;
      padding: 1.5rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    footer {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.9rem;
    }

    footer a {
      color: white;
      text-decoration: underline;
    }