/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[12].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[12].oneOf[13].use[5]!./src/components/pages/ExpertsDetails/sandeep-profile.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

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

header {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  header {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  header {
    margin-bottom: 20px;
  }
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .profile-container {
    padding: 20px 0;
    margin-top: 40px;
  }
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow: visible;
}
.profile-card__image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .profile-card__image {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 480px) {
  .profile-card__image {
    width: 150px;
    height: 150px;
  }
}
.profile-card__name {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .profile-card__name {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .profile-card__name {
    font-size: 1.5rem;
  }
}
.profile-card__title {
  font-size: 1.3rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .profile-card__title {
    font-size: 1.1rem;
  }
}
.profile-card__link {
  color: #0055a4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.profile-card__link:hover {
  color: #003366;
  text-decoration: underline;
}

.about-section {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 35px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .about-section {
    padding: 25px;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 20px;
  }
}
.about-section__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0055a4;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #0055a4;
}
@media (max-width: 480px) {
  .about-section__title {
    font-size: 1.5rem;
  }
}
.about-section__content p {
  margin-bottom: 16px;
  text-align: justify;
  line-height: 1.7;
}
.about-section__content p:last-child {
  margin-bottom: 0;
}
