@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "EB Garamond", serif;
}

body {
  background: #f4f0eb;
  color: #444;
}

/* Title */
.main-title {
  padding: 30px 0px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  position: relative;
  line-height: 1.2;
  animation: fadeInUp 1.2s ease-out forwards;
}

.main-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #b08968;
  margin: 1rem auto 0;
  border-radius: 4px;
}

/* Section Styling */
section {
  background-color: #faf9f6;
  margin-bottom: 30px;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 3rem 1.2rem;
  max-width: 1100px;
  margin-inline: auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2b2b2b;
  border-left: 5px solid #b08968;
  padding-left: 15px;
  letter-spacing: 0.5px;
}

section p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
  letter-spacing: 0.3px;
}

/* Custom List Styling */
.custom-list {
    padding-left: 0;
    list-style: none;
    margin-top: 1rem;
  }
  
  .custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.75;
    text-align: justify;
    letter-spacing: 0.3px;
  }
  
  .custom-list li::before {
    content: "✦"; /* Modern triangle bullet */
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.3rem;
    color: #b08968;
    font-weight: bold;
  }
  

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animated-section {
  opacity: 0;
  animation: fadeSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
  .main-title {
    font-size: 2.5rem;
    padding: 1 0rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  section h2 {
    font-size: 1.75rem;
  }

  section p,
  .custom-list li {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .main-title {
    font-size: 2rem;
  }

  section {
    padding: 2rem 1rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section p,
  .custom-list li {
    font-size: 1.1rem;
  }
}
