
  :root {
    --primary: #2a4d69;
    --secondary: #d4a373;
    --accent: #e76f51;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --text: #333333;
    --background: #ffffff;
  }

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

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }

  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
  }

  .btn-primary {
    background-color: var(--primary);
    color: white;
  }

  .btn-primary:hover {
    background-color: #1d3a50;
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn-secondary:hover {
    background-color: rgba(42, 77, 105, 0.1);
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-align: center;
    overflow: hidden;
  }

  .hero-section .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
  }

  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
  }

  .hero-section .subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }

  /* Intro Section */
  .intro-section {
    padding: 5rem 0;
    background-color: var(--light);
  }

  .intro-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .intro-section .text-content {
    flex: 1;
  }

  .intro-section .image-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Trends Section */
  .trends-section {
    padding: 5rem 0;
    background-color: var(--background);
  }

  .trends-section h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

  .trends-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trend-card {
    display: flex;
    flex-direction: column;
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  .trend-image {
    height: 250px;
    overflow: hidden;
  }

  .trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .trend-card:hover .trend-image img {
    transform: scale(1.05);
  }

  .trend-content {
    padding: 1.5rem;
  }

  .trend-features {
    list-style: none;
    margin-top: 1rem;
  }

  .trend-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .trend-features i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 1rem;
  }

  /* Gallery Section */
  .gallery-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light-gray);
  }

  .gallery-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }

  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }

  .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .gallery-item:hover {
    transform: translateY(-10px);
  }

  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
  }

  .gallery-caption h3 {
    color: white;
    margin-bottom: 0.5rem;
  }

  .gallery-caption p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  /* Consultation Section */
  .consultation-section {
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
  }

  .consultation-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .consultation-content {
    flex: 1;
    text-align: center;
  }

  .consultation-section h2 {
    color: white;
  }

  .consultation-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .btn-primary {
    background-color: var(--secondary);
    color: var(--dark);
  }

  .btn-primary:hover {
    background-color: #c09563;
  }

  .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }

  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    .intro-section .container {
      flex-direction: row;
      align-items: center;
    }

    .trends-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .consultation-section .container {
      flex-direction: row;
    }

    .consultation-content {
      text-align: left;
    }

    .cta-buttons {
      flex-direction: row;
    }
  }

  @media (min-width: 1024px) {
    .hero-section h1 {
      font-size: 4rem;
    }

    .trends-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
