* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-y: scroll;
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  color: #333333;
  padding-top: 80px;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #fc6351;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding-left: 30px;
  margin-right: 100px;
}

.navbar-brand .logo-image {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid rgba(255, 140, 122, 1);
  background-color: #f5f5f5;
  margin-right: 30px;
  margin-left: 30px;
  object-fit: cover; 
  object-position: center; 
  display: block; 
  aspect-ratio: 1/1; 
}

.navbar-nav {
  display: flex;
  gap: 25px;
  margin-right: 30px;
}

.nav-item .nav-link {
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-item .nav-link:hover {
  color: #fc6351;
}

.nav-item .nav-link.active {
  color: #fc6351;
  font-weight: 600;
  border-bottom: 2px solid #d3d3d3; 
}

.navbar-toggler {
  border: none;
  padding: 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(252, 99, 81, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 1500px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    display: block !important;
    margin-right: 20px;
    visibility: visible;
  }

  .navbar-collapse {
    display: none;
    width: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar-collapse.show {
    display: flex;
    max-height: 500px; 
  }

  .navbar-nav {
    padding: 10px 20px;
    gap: 15px;
    flex-direction: column;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .nav-item .nav-link {
    font-size: 16px;
    padding: 10px 0;
  }

  .navbar-brand .logo-image {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 15px;
  }

  .navbar-brand {
    font-size: 20px;
    padding-left: 10px;
    margin-right: 20px;
  }
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: calc(100vh - 80px);
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #fc6351;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #d3d3d3;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #b0b0b0;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.profile-picture {
  width: 380px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    gap: 20px;
  }

  .hero-image {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }

  .profile-picture {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

