body {
      margin: 0;
      font-family: 'Cinzel', serif;
      background-color: #fdfaf5;
      color: #3a2e1d;
    }

    header {
      text-align: center;
      padding: 20px;
    }

    header img {
      max-height: 140px;
      width: auto;
    }

    nav {
      background-color: #fff;
      border-bottom: 1px solid #e3d4b2;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      text-align: center;
      padding: 10px 0;
    }

    nav a {
      color: #6c5233;
      text-decoration: none;
      margin: 0 15px;
      font-weight: 600;
    }

    nav a:hover {
      color: #bfa76f;
    }

    section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
    }

    h2 {
      font-size: 2.5em;
      text-align: center;
      color: #6c5233;
    }

    .cta-container {
      text-align: center;
      margin: 40px 0;
    }

    .cta-button {
      font-size: 1.2em;
      background-color: #d6b46a;
      color: white;
      padding: 12px 30px;
      text-decoration: none;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .cta-button:hover {
      background-color: #bfa76f;
    }

    .gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .gallery img {
      width: 300px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    .img_gallery img {
        width: 400px;
        text-align: center;
    }
