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

body {
  font-family: 'Georgia', serif;
  background-color: #f5f1e8;
  color: #5a5a5a;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.profile-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-image-container {
  width: 380px;
  height: 475px;
  border-radius: 190px 190px 85px 85px;
  overflow: hidden;
  border: 3px solid #8b7355;
  margin-bottom: 30px;
  position: relative;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.name {
  font-size: 2.8rem;
  font-weight: normal;
  color: #5a5a5a;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.email-btn {
  background: transparent;
  border: 2px solid #8b7355;
  color: #5a5a5a;
  padding: 12px 30px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.email-btn:hover {
  background-color: #8b7355;
  color: #f5f1e8;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  color: #8b7355;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: #5a5a5a;
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.about-section {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: 4rem;
  font-weight: normal;
  color: #5a5a5a;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.about-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #6a6a6a;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 40px 20px;
    text-align: center;
  }
  
  .profile-image-container {
    width: 240px;
    height: 300px;
    border-radius: 120px 120px 50px 50px;
  }
  
  .name {
    font-size: 1.8rem;
  }
  
  .about-section {
    padding-left: 0;
  }
  
  .about-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .about-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }
  
  .profile-image-container {
    width: 200px;
    height: 250px;
    border-radius: 100px 100px 40px 40px;
  }
  
  .name {
    font-size: 1.6rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .email-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
}
