/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
}

/* Hero Section */
.hero {
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 100px 80px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-right {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.9;
}

.hero-divider {
  border: none;
  border-top: 2px solid #ffffff;
  width: 60px;
  margin: 30px 0;
}

/* Button */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #f5f0e8;
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #e8e0d0;
  transform: translateY(-1px);
}

/* About Section */
.about {
  background-color: #ffffff;
  padding: 80px;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2a2a3e;
}

.about-text em {
  font-style: italic;
}

.about-image {
  flex: 0 0 350px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Offer Section */
.offer {
  background-color: #d4e9f7;
  padding: 80px;
}

.offer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.offer-left {
  flex: 1;
}

.offer-right {
  flex: 1;
}

.offer-divider {
  width: 2px;
  background-color: #1a1a2e;
  align-self: stretch;
}

.offer h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
}

.offer ul {
  list-style: disc;
  padding-left: 24px;
}

.offer li {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.7;
}

.offer-left u {
  text-decoration: underline;
}

/* Find Your Voice Section */
.find-voice {
  background-color: #d4e9f7;
  padding: 80px;
  text-align: center;
}

.find-voice-content {
  max-width: 700px;
  margin: 0 auto;
}

.find-voice h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
}

.find-voice p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.find-voice ul {
  list-style: disc;
  display: inline-block;
  text-align: left;
  padding-left: 24px;
  margin-bottom: 30px;
}

.find-voice li {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.find-voice .italic {
  font-style: italic;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .about {
    padding: 60px 24px;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .about-image {
    flex: none;
    width: 100%;
    max-width: 350px;
  }

  .offer {
    padding: 60px 24px;
  }

  .offer-content {
    flex-direction: column;
    gap: 40px;
  }

  .offer-divider {
    width: 100%;
    height: 2px;
  }

  .offer h2 {
    font-size: 1.8rem;
  }

  .find-voice {
    padding: 60px 24px;
  }

  .find-voice h2 {
    font-size: 2.5rem;
  }
}
