.header {
  margin-bottom: 3px;
  margin-top: 20px;
  margin-left: 90px;
}
  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-family: "bricolage-grotesque", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .header h2 {
    font-size: 1.2rem;
    color: #555;
  }

  .content {
    display: flex;
    gap: 90px;
    align-items: flex-start;
    margin-left: 80px;
  }

  .left-section {
    flex: 2;
    margin-left: 10px;
    max-width: 34%;
    font-size: 1rem;
    color: #333;
  }

  .right-section {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    margin-right: 90px;
  }

  .right-placeholder-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .right-placeholder {
    width: 80%; /* Shrinks the container to 80% of its parent */
    height: 560px; /* 700px * 0.8 = 560px to scale it down */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .right-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .text-block {
    font-size: 1rem;
    margin-top: 20px;
    color: #333;
  }

  /* Tablet (up to 992px wide) */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
    margin: 0 30px;
    gap: 40px;
  }

  .left-section,
  .right-section {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .right-placeholder {
    width: 100%;
    height: 400px;
  }

  .right-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header {
    margin-left: 30px;
    margin-right: 30px;
  }
}

/* Mobile (up to 768px wide) */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .header h2 {
    font-size: 1rem;
  }

  .right-placeholder {
    height: 300px;
  }

  .text-block {
    font-size: 0.95rem;
  }
}
