.section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* Content Section */
.content-section {
  background-color: #8b4513; /* Coffee color background */
  padding: 20px;
}

.content-title h1 {
  font-size: 36px;
  /* text-decoration: underline;
  text-decoration-thickness: 5px; */
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.content-col {
  /* pointer-events: none; */
  flex: 1;
  padding: 15px;
  box-sizing: border-box;
}

.content-col.content-text h2,
.content-col.content-text p {
  color: #fff;
  text-align: left;
}

.content-col.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.content-col.content-image img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .content-col {
    flex: 1 0 100%;
  }

  .content-col.content-text h2 {
    font-size: 24px;
  }

  .content-col.content-text p {
    font-size: 18px;
  }
}

@media (min-width: 769px) {
  .content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .content-col {
    background-color: rgba(139, 69, 19, 0.8); /* Slightly faded brown */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .content-col:hover {
    transform: translateY(-10px);
  }

  .content-col.content-text {
    padding: 20px;
  }

  .content-col.content-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .content-col.content-text p {
    font-size: 20px;
  }

  .content-col.content-image img {
    height: 100%;
  }
}
