
style
    {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Georgia, 'Times New Roman', serif;
      line-height: 1.6;
      color: #2f2a1f;
      background-color: #f7f1e3;
    }

    header {
      background: linear-gradient(rgba(35, 28, 16, 0.65), rgba(35, 28, 16, 0.65)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      min-height: 70vh;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
    }

    header h1 {
      font-size: 4rem;
      letter-spacing: 2px;
      margin-bottom: 1rem;
    }

    header p {
      font-size: 1.4rem;
      max-width: 700px;
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #3f2f1b;
      padding: 1rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
    }

    nav a:hover {
      color: #d6b36a;
    }

    section {
      max-width: 1000px;
      margin: 0 auto;
      padding: 4rem 2rem;
    }

    section h2 {
      font-size: 2.3rem;
      color: #4a341d;
      margin-bottom: 1rem;
      border-bottom: 3px solid #b8893b;
      display: inline-block;
      padding-bottom: 0.3rem;
    }

    section p {
      font-size: 1.1rem;
      margin-top: 1rem;
    }

    .card {
      background-color: #fffaf0;
      padding: 2rem;
      margin-top: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .picture-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .picture-box {
      height: 220px;
      background-color: #d8c19a;
      border: 3px dashed #8a6b3f;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
  </style>
