@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
}
.content-image {
  border-radius: 8px;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .content-image {
    width: 500px;
    height: 500px;
    margin-right: 2rem !important;
    float: left;
  }
}
@media all and (max-width: 768px) {
  .content-image {
    height: 350px;
    margin-bottom: 1rem !important;
  }
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.content h1 {
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem !important;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-size: 1.5rem !important;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}

.content p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.25rem !important;
}

.content ul,
.content ol {
  margin-bottom: 1.25rem !important;
  margin-left: 2rem;
}

.content ul {
  list-style-type: disc;
}

.content ol {
  list-style-type: decimal;
}

.content li {
  margin-bottom: 0.5rem;
}

.content a {
  color: #007bff;
  text-decoration: underline;
  font-weight: 500;
}

.content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  border-left: 4px solid #007bff;
  padding-left: 1rem;
  margin-bottom: 1.5rem !important;
  color: #555;
}

.content strong {
  font-weight: 600;
}

.content em {
  font-style: italic;
}

.content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.iti {
  width: 100%;
}




/* Buttons */
.btn-primary {
  background-color: #FCD34D; /* primary DEFAULT */
  color: #1f2937; /* text-gray-900 */
  font-weight: 600;
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  border-radius: 0.5rem; /* rounded-lg */
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background-color: rgba(252, 211, 77, 0.9); /* hover:bg-primary/90 */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-secondary {
  background-color: #FB923C; /* secondary DEFAULT */
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background-color: rgba(251, 146, 60, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-outline {
  border: 2px solid #FCD34D;
  color: #FCD34D;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.btn-outline:hover {
  background-color: #FCD34D;
  color: #1f2937; /* gray-900 */
}

/* Sections */
.section-padding {
  padding-top: 4rem;  /* py-16 */
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 5rem; /* lg:py-20 */
    padding-bottom: 5rem;
  }
}

.container-custom {
  max-width: 80rem; /* 7xl = 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding-left: 1.5rem; /* sm:px-6 */
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding-left: 2rem; /* lg:px-8 */
    padding-right: 2rem;
  }
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(to right, #FCD34D, #FB923C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
