/* Container */
.fx-accordion-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

/* Section Title */
.fx-accordion-title {
  text-align: center;
  font-family: "DM Serif Text", serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: #253b50;
}

/* Accordion wrapper */
.fx-accordion .fx-item {
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid #253b50;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Accordion header button */
.fx-header {
  width: 100%;
  background: #f8f9fa;
  border: none;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #253b50;
  position: relative;
  transition: background-color 0.2s ease;
}

.fx-header i {
  margin-right: 15px;
  font-size: 20px;
}

/* Plus/Minus icon #253b50*/
.fx-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Active header */
.fx-header.active {
  background: #253b50;
  color: #d1bf75;
}

.fx-header.active::after {
  content: "-";
  color: #d1bf75;
}

/* Accordion content */
.fx-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #444;
  background: #ffffff;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

/* When open */
.fx-content.open {
  padding: 20px;
  max-height: fit-content;
}

.fx-about-section {
  padding: 80px 0px;
  background: #eef2f4;
}

.fx-about-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}

.fx-about-text {
  flex: 1 1 500px;
}

.fx-section-title {
  font-family: "DM Serif Text", serif;
  font-size: 42px;
  font-weight: 100;
  color: #d1bf75;
  margin-bottom: 20px;
}

.fx-about-text p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #253b50;
  margin-bottom: 20px;
}

.fx-about-image {
  flex: 1 1 500px;
  text-align: center;
}

.fx-about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 14px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12);
}

/* why choose action section */

.fx-why-section {
  padding: 80px 0;
  background: #253b50;
}

.fx-why-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.fx-why-subtext {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}

.fx-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.fx-why-item {
  background: #ffffff;
  background: linear-gradient(to bottom right, #fff7d6, #fcffec);
  padding: 30px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fx-why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.12);
}

.fx-why-item i {
  font-size: 36px;
  color: #253b50;
  margin-bottom: 15px;
}

.fx-why-item h3 {
  font-family: "DM Serif Text", serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: #253b50;
}

.fx-why-item p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.center {
  text-align: center;
}

/* our teams section */

.our_teamsection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 80px auto;
  padding: 0 20px;
}

.color_royalgold {
  color: #d1bf75;
}

.flex__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.flex__container p {
  margin-bottom: 0;
  font-weight: 800;
  word-spacing: 2px;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  font-size: large;
}

.flex__container span {
  margin-bottom: 0;
  font-weight: 100;
  font-style: italic;
  word-spacing: 2px;
  font-weight: 800;
  font-size: large;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

.flex__item {
  margin-top: 5px;
}

.flex__img {
  height: 95px;
  filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.3));
}

.quote-shadow {
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

.blockquote-footer {
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .flex__container {
    gap: 30px;
    margin-bottom: 24px;
  }

  .flex__img {
    height: 85px;
  }
}
