/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, p {
  color: #333;
}

/* Profile Section */
#profile {
  background: linear-gradient(45deg, #8548f4, #48F485);
  padding: 60px 20px;
  border-bottom: 2px solid #333;
}

/* Card Container */
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}

/* Business Card */
.business-card {
  background: linear-gradient(135deg, #8548f4, #48F485);
  border-radius: 20px;
  width: 350px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 300;
}

.profile-img {
  margin-bottom: 20px;
}

.profile-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.info h1 {
  font-size: 2rem;
  font-weight: 500;
}

.info p {
  font-size: 1.1rem;
  margin-top: 5px;
  font-weight: 300;
}

/* Contact Info Section */
.contact-info {
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 300;
}

.contact-info a {
  color: #fff;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #f4f4f4;
}

.contact-info p {
  margin-bottom: 10px;
}

/* CTA Button */
.cta-btn {
  background-color: #fff;
  color: #333;
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  margin-top: 20px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #ff6a00;
  color: #fff;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .business-card {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .business-card {
    width: 90%;
  }
}