.about {
  background: #f5f0e8;
  padding: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid #d4a853;
  border-radius: 8px;
  z-index: -1;
}

.about-content h3 {
  font-size: 36px;
  color: #1a2744;
  margin-bottom: 20px;
}

.about-content p {
  color: #666;
  margin-bottom: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: #d4a853;
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.section-title h2
 {
    font-size: 50px;
    color: #1a2744;
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .accent-line {
    width: 80px;
    height: 3px;
    background: #d4a853;
    margin: 20px auto 0;
}