
    :root {
      --deep-indigo: #bb02ae;
      --terracotta: #f895d2;
      --cream: #F8F5F2;
      --gold: #D4AF37;
      --gray: #6e6969;
      --light-gray: #eee;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Lato', sans-serif;
      background-color: var(--cream);
      color: var(--deep-indigo);
      line-height: 1.8;
    }
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      line-height: 1.3;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; color: var(--terracotta); }
    p { font-size: 1.1rem; color: var(--gray); }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      text-align: center;
    
    }
    header {
      background-color: white;
      padding: 1.5rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      width: 100%;
    }
    .logo {
      max-width: 200px;
      display: inline-block;
      margin: 0 auto;
    }
    section {
      padding: 5rem 0;
    }
    .hero {
      background-color: var(--deep-indigo);
      color: white;
      text-align: center;
      padding: 6rem 2rem;
    }
    .hero h1 {
      color: white;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.3rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      color: #ddd;
    }
    .btn {
      display: inline-block;
      background: var(--terracotta);
      color: white;
      padding: 12px 30px;
      margin: 0.5rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .btn-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      margin: 3rem 0;
    }
    .card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      padding: 2rem;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-10px);
    }
    .card h3 {
      margin-bottom: 1rem;
    }
    .about-section {
      background-color: white;
    }
    .about-content {
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .about-text {
      flex: 2;
      min-width: 300px;
    }
 /* Flex container — keeps text and image side by side */
.about-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* Text side — takes more space */
.about-text {
  flex: 2;
  min-width: 300px;
}

/* Image container — smaller, fixed size, not too big */
.about-image-container {
  flex: 1;
  min-width: 200px;
  width: 250px;
  height: 150px; /* Taller than wide — natural portrait ratio */
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--light-gray);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  /* Optional: subtle border */
  border: 3px solid white;
}

/* Image — fits perfectly without stretching */
.about-image {
  width: 50%;
  height: 30%;
  object-fit: cover; /* Crops to fill */
  object-position: top; /* Focuses on your face — adjust to 'center' if needed */
  display: block;
}
    footer {
      background-color: var(--deep-indigo);
      color: white;
      text-align: center;
      padding: 3rem 0;
    }
    .social-links a {
      color: white;
      margin: 0 1rem;
      font-size: 1.5rem;
      text-decoration: none;
    }
    @media (max-width: 768px) {
      h1 { font-size: 2rem; }
      h2 { font-size: 1.8rem; }
      .hero p { font-size: 1.1rem; }
      .btn { display: block; margin: 1rem auto; width: 80%; }
    }
  