body {
      margin: 0;
      font-family: 'Raleway', sans-serif;
      background: linear-gradient(to bottom, #f3e5f5, #f6f2d1);
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .wavy-header {
      background: linear-gradient(135deg, #b39ddb, #f8bbd0);
      color: rgb(19, 18, 18);
      text-align: center;
      padding: 80px 20px 60px;
      position: relative;
      overflow: hidden;
    }

    .wavy-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.6em;
      margin-bottom: 10px;
    }

    .wavy-header p {
      font-size: 1.2em;
      font-weight: 300;
      margin: 0;
    }

    .wavy-header svg {
      display: block;
      width: 100%;
      height: 100px;
      margin-top: -1px;
    }

    h2 {
      font-size: 1.8em;
      color: #1a1a40;
      margin-top: 40px;
    }

    p {
      margin: 18px 0;
    }

    ul {
      list-style: none;
      padding-left: 0;
    }

    ul li::before {
      content: '✔ ';
      color: #4caf50;
      margin-right: 6px;
    }

    .quote {
      background-color: #fff7e6;
      border-left: 5px solid #ffd54f;
      padding: 20px;
      margin-top: 30px;
      font-style: italic;
      border-radius: 5px;
    }

    .cta-buttons {
      margin-top: 30px;
      text-align: center;
    }

    .cta-buttons a {
      text-decoration: none;
      display: inline-block;
      background-color: #291932;
      color: white;
      padding: 12px 24px;
      margin: 10px;
      border-radius: 30px;
      transition: 0.3s ease;
    }

    .cta-buttons a:hover {
      background-color: #673ab7;
    }

    footer {
      background-color: #2e3a59;
      color: white;
      text-align: center;
      padding: 30px 20px;
      font-size: 0.95em;
      margin-top: 60px;
    }

    @media (max-width: 600px) {
      .wavy-header h1 {
        font-size: 2.2em;
      }

      .cta-buttons a {
        width: 90%;
        text-align: center;
      }
    }
    .back-link {
      display: block;
      text-align: center;
      margin-top: 40px;
      font-weight: bold;
      text-decoration: none;
      padding: 10px;
    }

    /* Services Section Styles */
    .service-category {
      background-color: rgba(255, 255, 255, 0.7);
      border-radius: 8px;
      padding: 25px;
      margin: 30px 0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      border: 1px solid rgba(179, 157, 219, 0.3);
    }

    .service-item {
      margin-bottom: 25px;
    }

    .service-item h3 {
      color: #5e35b1;
      margin-bottom: 10px;
      font-size: 1.3rem;
      font-weight: 600;
    }

    .service-description {
      padding-left: 15px;
      border-left: 3px solid #b39ddb;
      font-size: 1rem;
    }

    .services-intro {
      font-size: 1.1em;
      margin-bottom: 30px;
      padding: 15px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 5px;
    }
    /* Hamburger Menu Styles */
.hamburger {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 2000;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  background-color: #333;
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: 0.4s;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -260px;
  height: 100%;
  width: 240px;
  background: linear-gradient(to bottom, #f6e7f9, #f5f4d7);
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  padding-top: 60px;
  transition: right 0.4s ease-in-out;
  z-index: 1500;
}

.side-menu.active {
  right: 0;
}

.side-menu a {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1.2em;
  border-bottom: 1px solid #ddd;
}

.side-menu a:hover {
  background-color: #f0dfe4;
  color: #7e57c2;
}

/* Overlay to dim background */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1400;
}

.overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .side-menu {
    width: 80%;
    right: -100%;
  }
  
  .side-menu.active {
    right: 0;
  }
}

 body {
      font-family: 'Raleway', sans-serif;
      background: linear-gradient(to bottom, #e0f7fa, #fff8e1);
      margin: 0;
      padding: 0 20px;
      color: #333;
    }
    header, section {
      max-width: 900px;
      margin: auto;
      padding: 40px 20px;
    }
    h1, h2 {
      text-align: center;
      color: #006064;
    }
    .video-container {
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }
    iframe {
      width: 100%;
      max-width: 600px;
      height: 340px;
      border: none;
    }
    .quiz {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin: 40px auto;
      max-width: 700px;
    }
    .quiz label {
      display: block;
      margin: 12px 0;
    }
    .quiz button {
      margin-top: 20px;
      padding: 10px 20px;
      font-weight: bold;
      background: #006064;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    .quiz button:hover {
      background: #00838f;
    }
    .result {
      font-weight: bold;
      color: #2e7d32;
      margin-top: 15px;
    }
    textarea {
      width: 100%;
      height: 120px;
      margin-top: 10px;
      padding: 10px;
      font-family: inherit;
    }
    /* Hamburger Menu Styles */
.hamburger {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 2000;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  background-color: #333;
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: 0.4s;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -260px;
  height: 100%;
  width: 240px;
  background: linear-gradient(to bottom, #f6e7f9, #f5f4d7);
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  padding-top: 60px;
  transition: right 0.4s ease-in-out;
  z-index: 1500;
}

.side-menu.active {
  right: 0;
}

.side-menu a {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1.2em;
  border-bottom: 1px solid #ddd;
}

.side-menu a:hover {
  background-color: #f0dfe4;
  color: #7e57c2;
}

/* Overlay to dim background */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1400;
}

.overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .side-menu {
    width: 80%;
    right: -100%;
  }
  
  .side-menu.active {
    right: 0;
  }
}
/* Modern, clean styling */
.about-me {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: #333;
}

.about-me h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.about-me p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-me strong {
    color: #000;
    font-weight: 600;
}

/* Subtle emphasis on key phrases */
.journey, .mission {
    font-size: 1.2rem;
    color: #444;
}

.credentials {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: Arial, sans-serif;
      background: linear-gradient(135deg, #e6f0ff, #f4f9ff);
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .hero {
      background: linear-gradient(135deg, #a8cfff, #d4f4f9);
      padding: 60px 20px;
      text-align: center;
      border-bottom: 1px solid #cbd6e2;
    }

    .hero h1 {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #2c3e50;
    }

    .hero p {
      font-size: 1.2em;
      color: #3b4e68;
    }

    h2 {
      margin-top: 40px;
      font-size: 1.5em;
      color: #2c3e50;
      text-align: center;
    }

    p {
      margin: 20px 0;
    }

    ul {
      margin: 10px 0 20px 20px;
    }

    li {
      margin-bottom: 8px;
    }

    .exercise {
      background-color: #ffffff;
      border-left: 6px solid #a0c4ff;
      padding: 20px;
      margin: 30px 0;
      border-radius: 6px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .exercise h3 {
      margin-top: 0;
      color: #2c3e50;
    }

    em {
      color: #555;
    }

    .back-link {
      display: block;
      text-align: center;
      margin: 60px 0 20px;
      font-weight: bold;
      color: #0077cc;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 2em; }
      .hero p { font-size: 1em; }
    }
    body {
      font-family: Arial, sans-serif;
      background-color: #fdfaf7;
      color: #333;
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
      line-height: 1.6;
    }

    h1 {
      text-align: center;
      color: #2c3e50;
      font-size: 2em;
      margin-bottom: 10px;
    }

    p.intro {
      text-align: center;
      font-size: 1.15em;
      margin-bottom: 30px;
    }

    .video-section {
      background: #ffffff;
      border-left: 6px solid #ce93d8;
      margin-bottom: 30px;
      padding: 20px;
      border-radius: 6px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .video-section h3 {
      margin-top: 0;
      color: #2c3e50;
    }

    iframe {
      width: 100%;
      height: 400px;
      border-radius: 8px;
      margin-top: 10px;
    }

    .back-link {
      display: block;
      text-align: center;
      margin-top: 40px;
      font-weight: bold;
      color: #0077cc;
      text-decoration: none;
    }
    body {
      font-family: Arial, sans-serif;
      background-color: #fdfaf7;
      color: #333;
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
      line-height: 1.6;
    }

    h1 {
      text-align: center;
      color: #2c3e50;
      font-size: 2em;
      margin-bottom: 10px;
    }

    p.intro {
      text-align: center;
      font-size: 1.15em;
      margin-bottom: 30px;
    }

    .video-section {
      background: #ffffff;
      border-left: 6px solid #80cbc4;
      margin-bottom: 30px;
      padding: 20px;
      border-radius: 6px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .video-section h3 {
      margin-top: 0;
      color: #2c3e50;
    }

    iframe {
      width: 100%;
      height: 400px;
      border-radius: 8px;
      margin-top: 10px;
    }

    .back-link {
      display: block;
      text-align: center;
      margin-top: 40px;
      font-weight: bold;
      color: #0077cc;
      text-decoration: none;
    }
  body {
      font-family: Arial, sans-serif;
      background-color: #f5faff;
      color: #333;
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
      line-height: 1.6;
    }

    h1, h2 {
      text-align: center;
      color: #2c3e50;
    }

    h1 {
      margin-bottom: 10px;
    }

    h2 {
      margin-top: 40px;
      font-size: 1.5em;
    }

    .exercise {
      background-color: #ffffff;
      border-left: 6px solid #b3cde0;
      padding: 20px;
      margin: 20px 0;
      border-radius: 6px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .exercise h3 {
      margin-top: 0;
      color: #2c3e50;
    }

    ul {
      padding-left: 20px;
    }

    li {
      margin-bottom: 8px;
    }

    em {
      color: #555;
    }

    .back-link {
      display: block;
      text-align: center;
      margin-top: 40px;
      font-weight: bold;
      color: #0077cc;
      text-decoration: none;
    }  
    body {
      font-family: 'Raleway', sans-serif;
      background: linear-gradient(to bottom, #e3f2fd, #fff8e1);
      margin: 0;
      padding: 0 20px;
      color: #333;
    }
    header, section {
      max-width: 900px;
      margin: auto;
      padding: 40px 20px;
    }
    h1, h2 {
      text-align: center;
      color: #0d47a1;
    }
    .video-container {
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }
    iframe {
      width: 100%;
      max-width: 600px;
      height: 340px;
      border: none;
    }
    .quiz {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin: 40px auto;
      max-width: 700px;
    }
    .quiz label {
      display: block;
      margin: 12px 0;
    }
    .quiz button {
      margin-top: 20px;
      padding: 10px 20px;
      font-weight: bold;
      background: #0d47a1;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    .quiz button:hover {
      background: #1565c0;
    }
    .result {
      font-weight: bold;
      color: #00695c;
      margin-top: 15px;
    }
    textarea {
      width: 100%;
      height: 120px;
      margin-top: 10px;
      padding: 10px;
      font-family: inherit;
    }
    /* Hamburger Menu Styles */
.hamburger {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 2000;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  background-color: #333;
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: 0.4s;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -260px;
  height: 100%;
  width: 240px;
  background: linear-gradient(to bottom, #f6e7f9, #f5f4d7);
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  padding-top: 60px;
  transition: right 0.4s ease-in-out;
  z-index: 1500;
}

.side-menu.active {
  right: 0;
}

.side-menu a {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1.2em;
  border-bottom: 1px solid #ddd;
}

.side-menu a:hover {
  background-color: #f0dfe4;
  color: #7e57c2;
}

/* Overlay to dim background */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1400;
}

.overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .side-menu {
    width: 80%;
    right: -100%;
  }
  
  .side-menu.active {
    right: 0;
  }
}
body {
      font-family: Arial, sans-serif;
       background: linear-gradient(to bottom, #f3e5f5, #f6f2d1);
      color: #333;
      max-width: 800px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }

    h1 {
      font-size: 2em;
      color: #2c3e50;
    }

    p {
      font-size: 1.1em;
      line-height: 1.8;
    }

    .email {
      display: inline-block;
      margin-top: 20px;
      font-size: 1.2em;
      color: #0077cc;
      text-decoration: none;
      font-weight: bold;
    }

    .email:hover {
      text-decoration: underline;
    }

    .note {
      margin-top: 40px;
      font-style: italic;
      color: #666;
    }

    .back-link {
      display: block;
      margin-top: 50px;
      font-weight: bold;
      text-decoration: none;
    }
    /* Hamburger Menu Styles */
.hamburger {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 2000;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  background-color: #333;
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: 0.4s;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -260px;
  height: 100%;
  width: 240px;
  background: linear-gradient(to bottom, #f6e7f9, #f5f4d7);
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  padding-top: 60px;
  transition: right 0.4s ease-in-out;
  z-index: 1500;
}

.side-menu.active {
  right: 0;
}

.side-menu a {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1.2em;
  border-bottom: 1px solid #ddd;
}

.side-menu a:hover {
  background-color: #f0dfe4;
  color: #7e57c2;
}

/* Overlay to dim background */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1400;
}

.overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .side-menu {
    width: 80%;
    right: -100%;
  }
  
  .side-menu.active {
    right: 0;
  }
}