/* Global styles */
body {
  margin: 0;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
   background: #fff9e6;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
}

/* Profile Section */
.profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.profile-left {
  flex: 0 0 150px;
}

.profile-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-right {
  text-align: right;
  flex: 1;
}

.profile-right h2 {
  /* font-family: "Arvo", serif; */
  font-size: 2rem;
  margin: 0;
  color: #ffd700;

  /* background: linear-gradient(45deg, #ffd700, #ffc000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; */
}

.role {
  font-size: 1.2rem;
  margin: 5px 0;
  font-weight: 600;
}

.powered {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 10px;
}

.phone,
.destination {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Info Section */
.info {
  margin-top: 40px;
  padding: 0 10px;
}

.info h1 {
  /* font-family: "Arvo", serif; */
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.info p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.info ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.info ul li {
  position: relative;
  padding-left: 1.8em;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.info ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

a {
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.signature {
  font-family: "Arvo", serif;
  font-size: 1.4rem;
  color: #ffc000;
  margin-top: 40px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .profile-left{  
    flex: 0;
    margin-top: 20px;
  }

  .profile-right {
    text-align: center;
  }

  .profile-img {
    width: 120px;
    height: 120px;
  }

  .info h1 {
    font-size: 1.8rem;
  }

  .info p,
  .info ul li {
    font-size: 1rem;
  }

  .signature {
    font-size: 1.2rem;
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.btn-link {
  display: flex;
  gap: 5px;
  background-color: #ffd700;
  color: #333333;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.btn-link:hover {
  background-color: #ffc000;
  transform: translateY(-2px);
  color: #222;
  text-decoration: none;
}

.btn-link.whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-link.whatsapp:hover {
  background-color: #1ebf5c;
  color: white;
}

@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-link {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
