* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Suisse Intl", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  transition: background-color 0.8s ease;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  /* background: linear-gradient(135deg, #d4af37, #e6c755); */
  background: #163E64;
  overflow: hidden;
  margin-top: 115px;
  padding: 100px 0;
  min-height: 500px;
}

.financial-hero {
  /* Specific styles for financial hero */
}

.hero-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -200px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -50px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-circle-3 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: 200px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-circle-4 {
  width: 180px;
  height: 180px;
  bottom: 30%;
  left: 300px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-circle-5 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 100px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-circle-6 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 50px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-content {
  height: 350px;
  position: absolute;
  top: 0;
  /* left: 0; */
  z-index: 2;
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  /* margin: 0 auto; */
}

.hero-left {
  /* width: 100%; */
  text-align: left;
}

.hero-right {
  width: 100%;
  max-width: 600px;
}

.hero-tagline {
  margin-bottom: 20px;
}

.hero-tagline p {
  /* max-width: 140px; */
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.9;
  padding-left: 10px;
}

.hero-text h1 {
  max-width: 950px;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
  line-height: 1;
}

.hero-client-types {
  margin-bottom: 30px;
  border-bottom: 2px solid #ffffff5b;
  border-top: 2px solid #ffffff5b;
  padding: 10px;
}

.hero-client-types ul {
  min-width: 1500px;
  /* list-style: none; */
  /* padding: 0; */
  display: flex;
  /* flex-wrap: wrap; */
  /* align-items: center; */
  /* gap: 20px; */
  padding-left: 20px;
}

.hero-client-types li {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-client-types li:not(:last-child)::after {
  content: "";
  margin-left: 20px;
  color: #fff;
  font-weight: 300;
  padding-left: 30px;
}

.hero-description p {
  max-width: 450px;
  position: absolute;
  right: 0px;
  font-size: 20px;
  color: #fff;
  /* line-height: 1.6; */
  /* max-width: 600px; */
  /* opacity: 0.95; */
  /* margin-bottom: 0; */
  margin-left: auto;
  text-align: left;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: #fff;
  max-width: 2100px;
  margin: 0 auto;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
  border-bottom: none;
}

.service-icon {
  flex-shrink: 0;
  /* width: 100px; */
  /* display: flex; */
  align-items: flex-start;
  padding-top: 5px;
}

.service-icon img {
  width: 140px;
  /* height: 40px; */
  object-fit: contain;
}

.service-content {
  flex: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

.service-content h3 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  padding-left: 0px;
}

.service-text {
  display: flex;
  flex-direction: column;
  padding-left: 250px;
}

.service-content p {
  font-size: 2rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: none;
}

.service-text .learn-more-link {
  color: var(--primary-btn-text);
  background-color: var(--primary-btn-background);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.service-text .learn-more-link:hover {
  color: var(--primary-btn-text);
}

/* essentia Advantage Section */
.essentia-advantage {
  padding: 120px 0;
  color: #fff;
  position: relative;
}

.advantage-header {
  text-align: center;
  margin-bottom: 80px;
}

.advantage-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.advantage-header h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
  line-height: 1.1;
}

.advantage-description {
  font-size: 20px;
  color: #fff;
  margin-bottom: 40px;
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.btn-get-in-touch {
  display: inline-block;
  background: #d4af37 !important;
  color: #000 !important;
  padding: 15px 30px;
  text-decoration: none !important;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-get-in-touch:hover {
  background: #b8941f;
  color: #fff !important;
}

.btn-get-in-touch:visited,
.btn-get-in-touch:active,
.btn-get-in-touch:focus {
  color: #000 !important;
  background: #d4af37;
}

.btn-get-in-touch:visited:hover,
.btn-get-in-touch:active:hover,
.btn-get-in-touch:focus:hover {
  background: #b8941f;
  color: #fff !important;
}

.advantage-grid {
  padding: 20px 20px 20px 20px;
  border-radius: 8px;
  background: #f1eedeff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.advantage-card {
  max-width: 331px;
  background: #fff;
  padding: 20px 20px;
  border-radius: 8px;
  text-align: center;
  min-height: 120px;
  display: grid;
  align-items: center;
}

.advantage-card h3 {
  font-size: 35px;
  font-weight: 400;
  color: #000;
  margin: 0;
  /* line-height: 1.3; */
}

.advantage-text {
  /* display: none; */
  color: #000;
  margin-top: 40px;
}

/* FAQs Section */
.faqs-section {
  min-width: 2100px;
  padding: 100px 20px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 8px;
}

.faqs-header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 600px;
}

.faqs-header h2 {
  max-width: 500px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  /* line-height: 1.2; */
}

.faqs-header p {
  height: 10px;
  font-size: 2rem;
  color: #000;
  margin-bottom: 30px;
}

.btn-schedule-call {
  background: var(--primary-btn-background);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-schedule-call:hover {
  background: #333;
}

.faqs-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* gap: 120px; */
  align-items: start;
  max-width: none;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 440px;
}

.faq-category h3 {
  height: 50px;
  font-size: 32px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
  position: sticky;
  top: 20px;
  padding-left: 0px;
}

.faq-category-inline h3 {
  font-size: 32px;
  font-weight: 400;
  color: #333;
  margin-bottom: 30px;
  padding-left: 0px;
}

.faq-all-lists {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.05);
}

.faq-toggle {
  font-size: 2.5rem;
  color: #666;
  transition: transform 0.2s ease;
  font-weight: 300;
  user-select: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 20px 30px 25px;
  font-size: 1.75rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Growth CTA Section */
.growth-cta {
  width: 1600px;
  padding: 120px 0;
  background: linear-gradient(135deg, #d4af37, #e6c755);
  position: relative;
  overflow: hidden;
}

.cta-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 50px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 2rem;
  color: #000;
  margin-bottom: 40px;
  opacity: 0.8;
}

.btn-get-in-touch-dark {
  display: inline-block;
  background: #000 !important;
  color: #fff !important;
  padding: 15px 30px;
  text-decoration: none !important;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-get-in-touch-dark:hover {
  background: #333;
  color: #fff !important;
}

.btn-get-in-touch-dark:visited,
.btn-get-in-touch-dark:active,
.btn-get-in-touch-dark:focus {
  color: #fff !important;
  background: var(--primary-btn-background);
}

.btn-get-in-touch-dark:visited:hover,
.btn-get-in-touch-dark:active:hover,
.btn-get-in-touch-dark:focus:hover {
  background: #333;
  color: #fff !important;
}

.cta-background-shapes {
  position: absolute;
  top: 0;
  left: 0px;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
}

.shape-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -50px;
  right: -50px;
  background: rgba(255, 255, 255, 0.1);
}

.shape-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  bottom: -100px;
  right: 200px;
  background: rgba(255, 255, 255, 0.15);
}

.shape-diamond {
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  top: 50%;
  right: 150px;
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive Design */
@media (min-width: 1820px) {
  .container {
    width: 1600px;
  }
}

@media (min-width: 1200px) {
  .faqs-section {
    min-width: auto;
    max-width: 1600px;
  }
}

@media (max-width: 768px) {
  /* Hero Section 移动端 */
  .hero-content {
    height: auto;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 20px;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
  }

  .hero-text h1 {
    max-width: 100%;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .hero-tagline p {
    max-width: 100%;
  }

  .hero-client-types {
    margin-bottom: 20px;
    padding: 8px;
  }

  .hero-client-types ul {
    min-width: auto;
    flex-wrap: wrap;
    /* justify-content: center; */
    padding-left: 0;
    gap: 10px;
  }

  .hero-description p {
    position: static;
    right: auto;
    max-width: 100%;
    margin-left: 0;
    /* text-align: center; */
    font-size: 1.75rem;
  }

  /* Services Section 移动端 */
  .services-section {
    max-width: 100%;
    padding: 60px 20px;
  }

  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0;
    gap: 20px;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .service-text {
    padding-left: 0;
    text-align: left;
  }

  /* essentia Advantage 移动端 */
  .advantage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
    max-width: 100%;
    padding: 30px 15px;
  }

  .advantage-card {
    max-width: 100%;
    padding: 15px;
    min-height: 80px;
  }

  .advantage-card h3 {
    font-size: 2.5rem;
  }

  /* FAQs Section 移动端 */
  .faqs-section {
    min-width: auto;
    max-width: 100%;
    padding: 60px 20px;
  }

  .faqs-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* 隐藏左侧的分类标题 */
  .faq-categories {
    display: none;
  }

  .faq-all-lists {
    gap: 30px;
  }

  /* 在第一个faq-list前添加General标题 */
  .faq-all-lists .faq-list:first-child::before {
    content: "General";
    display: block;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    padding-left: 0px;
  }

  /* 在investments-section前添加标题 */
  .investments-section {
    position: relative;
  }

  .investments-section::before {
    content: "Investments";
    display: block;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    padding-left: 0px;
  }

  .faq-category h3 {
    height: auto;
    position: static;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .faqs-header {
    text-align: center;
    max-width: 100%;
  }

  .faqs-header h2 {
    max-width: 100%;
  }

  /* Growth CTA 移动端 */
  .growth-cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* 小屏幕优化 */
  .hero {
    margin-top: 70px;
    padding: 60px 0 40px;
  }

  .hero-content {
    gap: 20px;
    padding: 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-tagline p {
    font-size: 12px;
  }

  .hero-client-types ul {
    gap: 8px;
    /* justify-content: center; */
  }

  .hero-client-types li {
    font-size: 12px;
  }

  .services-section {
    padding: 50px 15px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 1.75rem;
  }

  .advantage-grid {
    padding: 20px 10px;
    gap: 10px;
  }

  .advantage-card h3 {
    font-size: 20px;
  }

  .faqs-section {
    padding: 50px 15px;
  }

  .faqs-header h2 {
    font-size: 2rem;
  }

  .faq-category h3 {
    font-size: 2.5rem;
  }

  /* 移动端小屏幕的分类标题 */
  .faq-all-lists .faq-list:first-child::before,
  .investments-section::before {
    font-size: 24px !important;
  }

  .faq-question {
    font-size: 1.75rem;
    padding: 20px 25px;
  }

  .faq-answer p {
    font-size: 1.6rem;
    padding: 15px 25px 20px;
  }
}
.expertise-hero-section {
  background: linear-gradient(135deg, #d4af37 0%, #ffb909ff 100%);
  min-height: 550px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 1500px;
}

.expertise-hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 500px; */
  padding: 30px;
}

.expertise-hero-content h1 {
  max-width: 800px;
  font-size: 5.5rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.expertise-hero-content p {
  font-size: 2rem;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.cta-button {
  background: var(--primary-btn-background);
  color: white;
  padding: 20px 40px;
  margin-top: 50px;
  border: none;
  border-radius: 15px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background: #333;
}

.expertise-hero-shapes {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.6;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(218, 165, 32, 0.8);
  top: 20px;
  left: 50px;
}

.circle-1 {
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.7);
  border-radius: 50%;
  top: 50px;
  right: 100px;
}

.circle-2 {
  width: 150px;
  height: 150px;
  background: rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  bottom: 80px;
  left: 20px;
}

.diamond {
  width: 100px;
  height: 100px;
  background: rgba(218, 165, 32, 0.6);
  transform: rotate(45deg);
  bottom: 50px;
  right: 50px;
}
