
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f0f2f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  color: #2c3e50;
  margin: 0;
}

.title {
  color: #7f8c8d;
  font-size: 1.2em;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-info {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.contact-info {
  text-align: left;
}

.contact-info p {
  margin: 10px 0;
  color: #34495e;
}

.contact-info a {
  color: #3498db;
  text-decoration: none;
}

/* Popup styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.popup-content {
  position: relative;
  background: white;
  width: 90%;
  max-width: 400px;
  margin: 100px auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.popup-info {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.contact-btn {
  background: #2ecc71;
  color: white;
}

.close-popup {
  background: #e74c3c;
  color: white;
}

.whatsapp-link {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
}

.whatsapp-link i {
  margin-right: 5px;
}
.responsive-image {
  width: 70vw;
  height: auto;
}

@media (min-width: 768px) {
  .responsive-image {
    width: auto;
    height: 30vh;
  }
}