/* About Page Styles - Matching essentia Design */
* {
  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.5s ease;
}


.container {
  /* width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
}
/* Hero Section */
.about-hero {
  height: 800px;
  background-color: #000;
  color: white;
  padding: 250px 0 150px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.about-hero-content {
  max-width: 800px;
}

.about-hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.about-hero-title {
  width: 1100px;
  font-size: 10rem;
  /* font-weight: 700; */
  line-height: 1.1;
  margin-bottom: 50px;
}

.highlight {
  color: #d4af37;
}

.about-hero-description {
  max-width: 600px;
}

.about-hero-description p {
  font-size: 22px;
  /* font-weight: 600; */
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Team Section */
.team-section {
  background-color: #f8f8f8;
  padding: 100px 0 50px;
}


.section-title2 {
  width: 500px;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title {
  height: 90px;
  width: 500px;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin: 10px auto;  
  padding-top: 20px;
  color: #333;
}

.success-section.dark-theme .section-title {
  color: white;
}

.section-subtitle {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 60px;
  opacity: 0.9;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
  justify-content: flex-start;
}

/* .team-member {
  text-align: left;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
} */


.team-member {
  width: 280px;
  flex-shrink: 0;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo, .professional-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.team-member h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 20px 20px 10px;
}

.role {
  font-size: 14px;
  color: #666;
  margin: 0 20px 15px;
  line-height: 1.4;
}

.linkedin-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: #0077b5;
  color: white;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  margin: 0 20px 20px;
}

.expandable-section {
  background-color: #e8e8e8;
  margin: 0;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.expand-btn {
  background-color: #e8e8e8;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  color: #555;
  transition: background-color 0.3s ease;
}

.expand-btn:hover {
  background-color: #ddd;
}

.plus {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #f0f0f0;
  margin: 0;
  
}

.expand-content.active {
  max-height: 400px;
}

.expand-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  padding: 25px;
  text-align: left;
}

.expand-btn.active .plus {
  transform: rotate(45deg);
}

/* Professionals Section */
.professionals-section {
  background-color: #f8f8f8;
  padding: 0 0 100px;
}

.professionals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
}

/* .professional {
  text-align: left;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
} */

.professional:hover {
  transform: translateY(-5px);
}

.placeholder-photo {
  width: 100%;
  height: 350px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-photo::before {
  content: "";
  width: 80px;
  height: 80px;
  background-color: #999;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.placeholder-photo::after {
  content: "";
  width: 120px;
  height: 80px;
  background-color: #999;
  border-radius: 60px 60px 0 0;
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
}

/* Philosophy Section */
.philosophy-section {
  background-color: #fff;
  color: #333;
  padding: 50px 0;
  text-align: center;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.philosophy-section.dark-theme {
  background-color: #000;
  color: white;
}

.philosophy-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 40px;
}

.philosophy-section.dark-theme .philosophy-subtitle {
  color: #d4af37;
}

.philosophy-title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 50px;
}

.philosophy-description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 60px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-button {
  background-color: #d4af37;
  color: #000;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #b8941f;
}

/* Core Principles Section */
.principles-section {
  background-color: #fff;
  padding: 50px 0;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.principles-section.dark-theme {
  background-color: #000;
  color: white;
}

.principles-title {
  text-align: center;
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 80px;
  color: #333;
}

.principles-section.dark-theme .principles-title {
  color: white;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
  max-width: 1900px;
  margin: 0 auto;
  justify-items: center;
}

.principle-card {
  /* width: 100%; */
  max-width: 600px;
  min-width: 500px;
  background-color: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.principles-section.dark-theme .principle-card {
  background-color: #222;
  color: white;
}

.principle-card:hover {
  transform: translateY(-5px);
}

.principle-number {
  background-color: #d4af37;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
}

.principle-card h3 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
  padding-bottom: 20px;
}

.principle-card p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Success Section */
.success-section {
  height: 450px;
  background-color: #fff;
  color: #333;
  padding: 20px 0;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.success-section.dark-theme {
  background-color: #000;
  color: white;
}

.success-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.success-card {
  background-color: white;
  color: #000;
  /* padding: 20px; */
  padding: 0 20px;
  border-radius: 12px;
  /* text-align: center; */
}

.success-section.dark-theme .success-card {
  background-color: white;
  color: #000;
}

.success-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
  padding-top: 0px;
}

.success-card p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.8;
}

/* Evolution Section */
.evolution-section {
  background-color: #fff;
  color: #333;
  padding: 30px 0 150px;
  text-align: center;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.evolution-section.dark-theme {
  background-color: #000;
  color: white;
}

.evolution-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: #333;
}

.evolution-section.dark-theme .evolution-title {
  color: white;
}

.evolution-description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 80px;
  opacity: 0.9;
  line-height: 1.7;
  color: #666;
}

.evolution-section.dark-theme .evolution-description {
  color: #ccc;
}

.allocation-charts-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0px;
  margin-bottom: 80px;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  padding: 20px 0;
}

.chart-container {
  flex: 1;
  text-align: center;
  min-width: 180px;
  max-width: 100%;
}

.chart-image {
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.allocation-chart-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.chart-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chart-with-labels {
  text-align: center;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

.legend-text {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Legend colors */
.fixed-income-color {
  background-color: #d4af37;
}

.public-equity-color {
  background-color: #8b6914;
}

.alts-color {
  background-color: #8b6914;
}

.active-color {
  background-color: #5d4a0f;
}

.passive-color {
  background-color: #666;
}

.private-equity-color {
  background-color: #d4af37;
}

.equity-color {
  background-color: white;
  border: 1px solid #ccc;
}

.real-assets-color {
  background-color: #d4af37;
}

.private-credit-color {
  background-color: #8b6914;
}

.credit-color {
  background-color: #666;
}

.chart {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 15px auto;
  position: relative;
  overflow: hidden;
}

.chart-segment {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-label {
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.small-label {
  font-size: 9px;
  letter-spacing: 0.3px;
}

.chart-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: brightness(0) invert(1);
}

/* Adjust label position for multi-asset chart segments with icons */
.multi-asset .chart-segment .chart-label {
  top: 65%;
  font-size: 8px;
}

/* Chart Styles for different periods */
.foundations .fixed-income-full {
  background-color: #d4af37;
}

.age-60-40 .fixed-income-half {
  background-color: #d4af37;
  clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.age-60-40 .public-equity {
  background-color: #8b6914;
  clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 50% 100%);
}

.barbell .fixed-income-quarter {
  background-color: #d4af37;
  clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%);
}

.barbell .alts {
  background-color: #8b6914;
  clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%);
}

.barbell .active {
  background-color: #5d4a0f;
  clip-path: polygon(50% 50%, 50% 100%, 0% 100%, 0% 50%);
}

.barbell .passive {
  background-color: #666;
  clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%);
}

.multi-asset .private-equity {
  background-color: #d4af37;
  clip-path: polygon(50% 50%, 50% 0%, 85% 15%);
}

.multi-asset .equity {
  background-color: white;
  clip-path: polygon(50% 50%, 85% 15%, 100% 50%, 85% 85%);
}

.multi-asset .real-assets {
  background-color: #d4af37;
  clip-path: polygon(50% 50%, 85% 85%, 50% 100%, 15% 85%);
}

.multi-asset .private-credit {
  background-color: #8b6914;
  clip-path: polygon(50% 50%, 15% 85%, 0% 50%, 15% 15%);
}

.multi-asset .credit {
  background-color: #666;
  clip-path: polygon(50% 50%, 15% 15%, 50% 0%);
}

/* Chart label positioning */
.fixed-label {
  transform: translate(25%, -10%);
}

.equity-label {
  transform: translate(-25%, -10%);
}

.fixed-quarter-label {
  transform: translate(25%, -25%);
}

.alts-label {
  transform: translate(25%, 25%);
}

.active-label {
  transform: translate(-25%, 25%);
}

.passive-label {
  transform: translate(-25%, -25%);
}

.pe-label {
  transform: translate(20%, -30%);
}

.eq-label {
  transform: translate(30%, 0%);
}

.ra-label {
  transform: translate(0%, 30%);
}

.pc-label {
  transform: translate(-30%, 0%);
}

.cr-label {
  transform: translate(-10%, -30%);
}

.chart-labels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chart-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.chart-period {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  margin-top: 10px;
}

.evolution-conclusion {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.7;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f8f8;
  padding: 100px 0;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-left h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.faq-left p {
  font-size: 16px;
  opacity: 0.7;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-question.active .plus {
  transform: rotate(45deg);
}


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

/* Tablet Responsive */
@media (max-width: 768px) {
  /* Navigation */
  .nav-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav {
    flex-direction: column;
    gap: 20px;
  }

  .navbar-nav-my {
    margin-left: 20px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 10px;
  }

  .dropdown-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero Section */
  .about-hero {
    padding: 80px 0 100px;
    min-height: 50vh;
  }

  .about-hero-content {
    padding: 0 30px;
  }

  .about-hero-title {
    width: auto;
    font-size: 6rem;
    margin-bottom: 30px;
  }

  .about-hero-description p {
    font-size: 18px;
  }

  /* Team Section */
  .team-section {
    padding: 60px 0 40px;
  }

  .section-title {
    width: auto;
    font-size: 3rem;
    margin: 0 auto 40px;
    padding-top: 15px;
  }

  .section-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .team-grid {
    gap: 30px;
    margin-bottom: 60px;
    justify-content: center;
  }

  .professionals-grid {
    gap: 30px;
    justify-content: center;
  }

  .team-member {
    width: 250px;
  }

  .team-photo, .professional-photo {
    height: 300px;
  }

  .placeholder-photo {
    height: 300px;
  }

  /* Philosophy Section */
  .philosophy-section {
    padding: 100px 0;
  }

  .philosophy-title {
    font-size: 3rem;
  }

  .philosophy-description {
    font-size: 16px;
    max-width: 700px;
  }

  /* Principles Section */
  .principles-section {
    padding: 60px 0;
  }

  .principles-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .principle-card {
    min-width: auto;
    max-width: none;
    width: 100%;
  }

  .principle-card h3 {
    font-size: 1.5rem;
  }

  .principle-card p {
    font-size: 14px;
  }

  /* Success Section */
  .success-section {
    height: auto;
    padding: 60px 0;
  }

  .success-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .success-card h3 {
    font-size: 24px;
  }

  .success-card p {
    font-size: 16px;
  }

  /* Evolution Section */
  .evolution-section {
    padding: 80px 0 100px;
  }

  .evolution-title {
    font-size: 2.5rem;
  }

  .evolution-description {
    font-size: 16px;
    max-width: 700px;
  }

  .allocation-charts-row {
    flex-direction: row;
    gap: 15px;
    max-width: none;
    padding: 15px 0;
    overflow-x: auto;
  }

  .chart-container {
    min-width: 150px;
    max-width: 200px;
    margin: 0;
    flex-shrink: 0;
  }

  .chart {
    width: 150px;
    height: 150px;
  }

  .allocation-chart-img {
    width: 150px;
    height: 150px;
  }

  .chart-title {
    font-size: 16px;
  }

  .chart-period {
    font-size: 18px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 60px 0;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left h2 {
    font-size: 2rem;
  }

}

/* Mobile Responsive */
@media (max-width: 480px) {
  /* Navigation */
  .navbar-nav-my {
    margin-left: 10px;
  }

  /* Hero Section */
  .about-hero {
    padding: 60px 0 80px;
    min-height: 40vh;
  }

  .about-hero-content {
    padding: 0 20px;
  }

  .about-hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
  }

  .about-hero-subtitle {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .about-hero-description p {
    font-size: 16px;
  }

  /* Team Section */
  .team-section {
    padding: 40px 0 30px;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    padding-top: 10px;
  }

  .section-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .team-grid {
    gap: 25px;
    margin-bottom: 40px;
    justify-content: center;
  }

  .professionals-grid {
    gap: 25px;
    justify-content: center;
  }

  .team-member {
    width: 100%;
    max-width: 350px;
  }

  .team-member h3 {
    font-size: 1.5rem;
  }

  .team-photo, .professional-photo {
    height: 250px;
  }

  .placeholder-photo {
    height: 250px;
  }

  /* Philosophy Section */
  .philosophy-section {
    padding: 80px 0;
  }

  .philosophy-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .philosophy-subtitle {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .philosophy-description {
    font-size: 14px;
    max-width: none;
    margin-bottom: 40px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 20px;
  }

  /* Principles Section */
  .principles-section {
    padding: 40px 0;
  }

  .principles-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .principle-card {
    padding: 25px;
    min-width: auto;
    max-width: none;
    width: 100%;
  }

  .principle-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .principle-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .principle-card p {
    font-size: 13px;
  }

  /* Success Section */
  .success-section {
    padding: 40px 0;
  }

  .success-cards {
    margin-bottom: 40px;
  }

  .success-card {
    padding: 0 15px;
  }

  .success-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .success-card p {
    font-size: 14px;
  }

  /* Evolution Section */
  .evolution-section {
    padding: 60px 0 80px;
  }

  .evolution-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .evolution-description {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .allocation-charts-row {
    flex-direction: row;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
  }

  .chart-container {
    min-width: 120px;
    max-width: 150px;
    flex-shrink: 0;
  }

  .chart {
    width: 120px;
    height: 120px;
  }

  .allocation-chart-img {
    width: 120px;
    height: 120px;
  }

  .chart-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .chart-period {
    font-size: 16px;
    margin-top: 8px;
  }

  .chart-label {
    font-size: 9px;
  }

  .small-label {
    font-size: 7px;
  }

  .legend-text {
    font-size: 10px;
  }

  .evolution-conclusion {
    font-size: 14px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 40px 0;
  }

  .faq-left h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .faq-left p {
    font-size: 14px;
  }

  .faq-question {
    padding: 20px;
    font-size: 14px;
  }

  .expand-content p {
    font-size: 13px;
    padding: 20px;
  }


  /* Container adjustments */
  .container {
    padding: 0 15px;
  }

  /* Expand button adjustments */
  .expand-btn {
    padding: 15px;
    font-size: 14px;
  }

  .plus {
    font-size: 16px;
  }

  /* Team member adjustments */
  .expand-content.active {
    max-height: 300px;
  }
}


/* Expertise container styles */
.expertise-container {
  max-height: 0;
  width: 100%;
  overflow: hidden;
  transition: max-height 0.8s ease;
}

.expertise-container.show {
  opacity: 1;
  max-height: 200px;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Cache buster: 1755767741 */
