@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --primary-purple: #3d2784;
  --deep-purple: #26155f;
  --gold: #c98b10;
  --text-dark: #17213a;
  --text-muted: #5d667b;
  --light-purple: #f2effa;
  --border-color: rgba(61, 39, 132, 0.14);
  --white: #ffffff;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--text-dark);
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  background:
    radial-gradient(
      circle at 7% 20%,
      rgba(201, 139, 16, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(61, 39, 132, 0.09),
      transparent 28%
    ),
    linear-gradient(135deg, #ffffff 0%, #f8f9fd 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(61, 39, 132, 0.08);
  border-radius: 50%;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -170px;
  left: -150px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 139, 16, 0.12);
  border-radius: 50%;
}

.about-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
  color: var(--primary-purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  gap: 80px;
  align-items: start;
}

.about-heading {
  position: relative;
  padding-left: 28px;
}

.heading-accent {
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 105px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    var(--primary-purple) 100%
  );
}

.about-heading h1 {
  max-width: 470px;
  font-family: "DM Serif Display", serif;
  color: var(--deep-purple);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -1.5px;
}

.about-heading h2 {
  max-width: 400px;
  margin-top: 22px;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}

.about-content {
  padding-top: 5px;
}

.about-content > p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
}

.about-content > p:first-child {
  color: var(--text-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.7;
}

.highlight-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-top: 38px;
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(61, 39, 132, 0.06),
      rgba(201, 139, 16, 0.07)
    ),
    var(--white);
  box-shadow: 0 18px 50px rgba(32, 24, 72, 0.08);
}

.highlight-icon {
  display: flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--deep-purple)
  );
  color: var(--white);
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
}

.highlight-box p {
  color: var(--deep-purple);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .about-section {
    padding: 75px 22px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-heading h1 {
    max-width: 650px;
  }

  .about-heading h2 {
    max-width: 550px;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 60px 18px;
  }

  .about-label {
    margin-bottom: 28px;
  }

  .about-heading {
    padding-left: 20px;
  }

  .heading-accent {
    width: 4px;
    height: 85px;
  }

  .about-heading h1 {
    font-size: 42px;
  }

  .about-heading h2 {
    margin-top: 17px;
    font-size: 18px;
  }

  .about-content > p,
  .about-content > p:first-child {
    font-size: 16px;
    line-height: 1.75;
  }

  .highlight-box {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }

  .highlight-box p {
    font-size: 15px;
  }
}