* {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
  }
  a {
    color: inherit;
    text-decoration: none;
  }


/* Header Styles */
header {
  background-color: #0a0a1a;
  color: #fff;
  padding: 40px 20px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.header-logo {
  width: 175px;
  height: 175px;
}

.header-content h1 {
  font-size: 48px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 100%;
}

.header-content h1 span {
  display: inline-block;
}

.header-content h1 span:first-child,
.header-content h1 span:last-child {
  font-weight: 300;
}

.header-content h1 span:nth-child(2) {
  font-weight: 700;
}

.header-content p {
  margin: 10px 0 0;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
}

.header-content p span {
  display: inline-block;
}

.header-content p span:nth-child(2),
.header-content p span:nth-child(4) {
  color: #4db5ff; /* Bright blue for keywords */
}

.header-content p span:nth-child(1),
.header-content p span:nth-child(3) {
  color: #ffffff;
}

/* Responsive for small screens */
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .header-content img {
    width: 70px;
    height: 70px;
  }

  .header-content h1 {
    font-size: 36px;
  }

  .header-content p {
    font-size: 18px;
  }
}

  nav {
    background: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  nav a {
    margin: 0 15px;
    font-weight: 600;
    color: #1a1a2e;
    transition: color 0.3s ease;
  }
  nav a:hover {
    color: #e94560;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
  }
  .section {
    background: #fff;
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
  }
  .section:nth-child(odd) {
    animation-delay: 0.2s;
  }
  .section:nth-child(even) {
    animation-delay: 0.4s;
  }
  .section h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
  }

/* Who I Am Section and Guarantee */
.who-i-am .about-content, .guarantee .about-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-photo, .guarantee-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.who-i-am p, .guarantee p {
  font-size: 18px;
  line-height: 1.6;
  flex: 1;
}

  .section ul {
    list-style: none;
    padding-left: 0;
  }
  .section li {
    margin: 15px 0;
    padding-left: 40px;
    position: relative;
  }
  .section li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #4db5ff;
  }
  .cta {
    text-align: center;
    margin-top: 40px;
  }
  .cta a {
    background: #e94560;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  .cta a:hover {
    background: #d13f54;
  }
  footer {
    background: #1a1a2e;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {

      body {
        font-size: 16px; /* or 17px */
        line-height: 1.5;
      }
      h1, h2, h3 {
        line-height: 1.2;
  }
button, .btn {
  padding: 14px 24px;
  font-size: 18px;
  border-radius: 6px;
}
    header h1 {
      font-size: 2.5em;
    }
    header h2 {
      font-size: 1.2em;
    }
  section {
    padding: 40px 20px;
  }

  nav {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  nav a {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .who-i-am .about-content, .guarantee .about-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .who-i-am img, .guarantee img {
    max-width: 100%;
    height: auto;
  }
}