/* Performance Section Styles */
.performance {
 padding-top: 180px;
 position: relative;
 overflow: hidden;
 background-color: #ffffff;
}

.performance-container {
 max-width: 100%;
 margin: 0 auto;
 padding: 0 24px;
 position: relative;
}

.performance-header {
 margin-bottom: 40px;
}

.performance-number {
 font-family: "Playfair Display", serif;
 font-size: 36px;
 font-weight: 400;
 line-height: 1.33;
 color: #2d363d;
 display: block;
 margin-bottom: 16px;
}

.performance-title {
 font-family: "Playfair Display", serif;
 font-size: 140px;
 font-weight: 400;
 line-height: 1.1;
 color: #2d363d;
 margin-bottom: 16px;
}

.performance-subtitle {
 font-family: "Raleway", sans-serif;
 font-size: 35px;
 font-weight: 400;
 line-height: 1.17;
 color: #2d363d;
 margin-bottom: 24px;
}

.performance-intro {
 font-family: "Raleway", sans-serif;
 font-size: 20px;
 font-weight: 400;
 line-height: 1.5;
 color: #292b33;
 margin-bottom: 40px;
 max-width: 100%;
}

/* Mobile-first card layout */
.performance-all-cards {
 display: flex;
 flex-direction: column;
 gap: 16px;
 margin-bottom: 40px;
}

.performance-card,
.performance-highlight-card {
 width: 100%;
 box-sizing: border-box;
 padding: 24px;
 border-radius: 4px;
}

.performance-card {
 display: flex;
 flex-direction: column;
 gap: 16px;
 position: relative;
}

/* Unique colors for each card */
.performance-all-cards > div:nth-child(1) {
 background-color: #f8f9fa;
}

.performance-all-cards > div:nth-child(2) {
 background-color: #e9ecef;
}

.performance-all-cards > div:nth-child(3) {
 background-color: #81c6b4;
}

.performance-all-cards > div:nth-child(4) {
 background-color: #476477;
}

.performance-card-title {
 font-family: "Raleway", sans-serif;
 font-size: 18px;
 font-weight: 600;
 line-height: 1.2;
 color: #292b33;
 margin: 0;
}

.performance-card-text {
 font-family: "Raleway", sans-serif;
 font-size: 16px;
 font-weight: 400;
 line-height: 1.5;
 color: #292b33;
 margin: 0;
}

.highlight-card-content {
 display: flex;
 flex-direction: column;
 gap: 16px;
}

.performance-highlight-card-title {
 font-family: "Raleway", sans-serif;
 font-size: 18px;
 font-weight: 600;
 line-height: 1.2;
 color: #ffffff;
 margin: 0;
}

.performance-highlight-card-text {
 font-family: "Raleway", sans-serif;
 font-size: 16px;
 font-weight: 400;
 line-height: 1.5;
 color: #ffffff;
 margin: 0;
}

.performance-conclusion {
 font-family: "Raleway", sans-serif;
 font-size: 20px;
 font-weight: 400;
 line-height: 1.5;
 color: #292b33;
 padding: 0;
 max-width: 100%;
}

/* Desktop styles */
@media (min-width: 768px) {
 .performance {
  padding-top: 180px 0;
 }
 .performance-container {
  max-width: 1200px;
  padding: 0 40px;
 }

 .performance-number {
  font-size: 55px;
 }

 .performance-all-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  margin-bottom: 48px;
 }

 .performance-card,
 .performance-highlight-card {
  padding: 32px;
 }

 .performance-card {
  gap: 24px;
 }

 .highlight-card-content {
  gap: 24px;
  height: 100%;
  justify-content: center;
 }

 .performance-card-title {
  font-size: 28px;
 }

 .performance-highlight-card-title {
  font-size: 28px;
 }

 .performance-intro {
  margin-bottom: 48px;
 }

 .performance-conclusion {
  margin: 0;
 }
}

@media (max-width: 767px) {
 .performance-title {
  font-size: 60px;
 }

 .performance-subtitle {
  font-size: 24px;
 }
}
