/* ==========================================================================
   About Us Page – Modern & Professional Style
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
  color: #1e293b;
  line-height: 1.68;
  min-height: 100vh;
  padding: 2.5rem 1rem;
}

/* Container */
.container {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  padding: 4.5rem 3.5rem;
  border-radius: 16px;
  box-shadow: 
    0 20px 40px -12px rgba(0, 0, 0, 0.08),
    0 10px 25px -8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Subtle background accent */
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
}

/* Heading */
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 1.1rem;
}

h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  border-radius: 2px;
}

/* Paragraphs */
p {
  font-size: 1.18rem;
  color: #475569;
  margin-bottom: 1.9rem;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

/* First paragraph – slightly more prominent */
.container > p:first-of-type {
  font-size: 1.28rem;
  font-weight: 500;
  color: #334155;
}

/* Responsive adjustments */
@media (max-width: 680px) {
  .container {
    padding: 3.5rem 1.8rem;
    border-radius: 12px;
  }

  h1 {
    font-size: 2.4rem;
  }

  p {
    font-size: 1.1rem;
  }

  .container > p:first-of-type {
    font-size: 1.18rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1.5rem 0.8rem;
  }
  
  .container {
    padding: 3rem 1.5rem;
  }
  
  h1 {
    font-size: 2.1rem;
  }
}