* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-container {
  padding-top: 80px;
  width: 100%;
  height: 100%;
}

.home {
  background-color: rgb(248, 242, 250);
  height: 98vh;
  display: flex;
  padding: 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 150px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  margin-top: -10px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  flex-grow: 1;
  flex-shrink: 0;
  padding-right: 40px;
}

.hero-text .logo {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.hero-text .logo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: rgb(74, 16, 107);
  font-family: "Rubik", sans-serif;
}

.hero-title .highlight {
  color: rgb(154, 32, 224);
}

.hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgb(66, 11, 66);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background-color: rgb(206, 154, 255);
  color: rgb(107, 5, 155);
  padding: 15px 30px;
  border-radius: 0 20px 0 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  color: #f7e6fc;
  background-color: rgb(119, 20, 119);
}

.btn-secondary {
  background-color: transparent;
  color: rgb(107, 5, 155);
  padding: 15px 40px;
  border: 2px solid rgb(206, 154, 255);
  border-radius: 0 20px 0 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgb(206, 154, 255);
}

.hero-image {
  flex: 1;
  max-width: 760px;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 250px;
}

.hero-image img {
  width: 100%;
  height: 430px;
  border-radius: 250px 0 250px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  display: block;
}

.floating-decoration {
  position: absolute;
  top: 20px;
  left: -23px;
  width: 105%;
  height: 100%;
  border-radius: 250px 0 250px 0;
  background: linear-gradient(135deg, rgb(210, 158, 245), rgb(140, 48, 194));
  z-index: -1;
  pointer-events: none;
  transition: border-radius 0.3s, width 0.3s, height 0.3s;
}

.services-background {
  width: 100%;
  height: auto; /* Change from fixed height */
  min-height: 190vh; /* Add this line */
  padding: 20px;
  background-color: rgb(182, 120, 253); /* Add this line */
}

.services {
  width: 100%;
  height: auto; /* Change from fixed height */
  min-height: 176vh; /* Add this line */
  background-color: #faf3f9;
  border-radius: 12px;
  margin: 20px 0;
  padding: 20px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.services-footer h1 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgb(117, 20, 117);
  text-align: center;
  margin-top: 30px;
}

.services-footer h2 {
  font-family: "Rubik", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  color: rgb(117, 20, 117);
  text-align: center;
  margin-top: 10px;
}

.services-footer p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  color: rgb(66, 11, 66);
  text-align: center;
  margin-top: 20px;
}

.services-box {
  margin-top: 80px;
  height: auto;
  width: 99%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 45px;
}

.service-item {
  width: 300px;
  height: 450px;
  border-radius: 10px 100px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-image {
  width: 100%;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-15px);
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 30px -10px;
}

.service-image img {
  border-radius: 100px 100px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-text {
  width: 100%;
  height: 100%;
  border: 2px solid rgb(233, 185, 248);
}

.service-title {
  padding: 15px;
  width: 100%;
  background-color: rgb(229, 206, 255);
}

.service-title h1 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgb(117, 20, 117);
  margin: 0;
}

.service-description {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgb(66, 11, 66);
  padding: 10px;
  width: 100%;
  height: 100%;
}

.button-more-services {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  width: 100%;
}

.btn-services {
  background-color: rgb(206, 154, 255);
  color: rgb(107, 5, 155);
  padding: 15px 30px;
  border-radius: 0 20px 0 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  transition: all 0.4s ease;
}

.btn-services:hover {
  color: #ffffff;
  background-color: rgb(119, 20, 119);
}

.about {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
}

.staff-container {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px;
}

.staff-title {
  width: 100%;
  height: 200px;
  text-align: center;
}

.staff-title h1 {
  font-family: "Rubik", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.staff-title p {
  font-family: "Rubik", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.staff-content {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 100px;
}

.staff-item {
  display: flex;
  flex-direction: column;
  width: 500px;
  height: 700px;
}

.staff-image {
  width: 100%;
  height: 80%;
  position: relative;
}

.staff-image img {
  width: 100%;
  height: 100%;
  border-radius: 250px 250px 0 0;
  position: relative;
  z-index: 2;
}

.staff-text {
  height: 20%;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  color: white;
}

.staff-text h2 {
  font-size: 30px;
}

.staff-text p {
  font-size: 16px;
}

.staff-image .decoration {
  position: absolute;
  right: 1px;
  width: 102%;
  height: 96%;
  border-radius: 250px 250px 0 0;
  background: linear-gradient(135deg, rgb(150, 42, 223), rgb(140, 48, 194));
  z-index: 1;
}

.violet-background {
  flex: 1;
  background-color: rgb(182, 120, 253);
  padding-bottom: 0px;
}

.location {
  padding: 0;
  margin: 0;
  width: 100%;
  max-height: 100%;
}

.location-container {
  text-align: center;
}

.location-title h1 {
  font-family: "Rubik", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: rgb(182, 120, 253);
}

.location-text p {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  color: rgb(66, 11, 66);
  margin-top: 20px;
}

.location-map {
  flex: 2;
  margin-top: 40px;
  overflow: hidden;
}

.location-map iframe {
  width: 40%;
  height: 450px;
  border-radius: 20px;
  border: none;
}

.contact {
  padding-top: 100px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-title {
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 37px;
  font-weight: 700;
  color: rgb(182, 120, 253);
}

.contact-text {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: rgb(66, 11, 66);
}

.social-media {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-media a {
  color: rgb(182, 120, 253);
  font-size: 35px;
  transition: all 0.3s ease;
}

.social-media a:hover {
  color: rgb(119, 20, 119);
  transform: scale(1.2);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-container {
  background: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  font-family: "Rubik", sans-serif;
  color: rgb(74, 16, 107);
}

.reminder-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.reminder-content button {
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  background-color: rgb(206, 154, 255);
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  color: rgb(117, 20, 117);
  cursor: pointer;
}

.reminder-content button:hover {
  background-color: rgb(216, 184, 224);
  color: rgb(117, 20, 117);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}

.close-button:hover {
  color: #000;
}

.reminder-list {
  margin: 20px 0;
  max-height: 60vh;
  overflow-y: auto;
  margin-bottom: 30px;
}

.appointment-card {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
}

.appointment-details p {
  margin: 8px 0;
  color: rgb(78, 41, 99);
}

.appointment-details strong {
  color: rgb(74, 16, 107);
  font-weight: 600;
}

#todayReminderModal .reminder-content h2 {
  color: rgb(74, 16, 107);
  font-size: 24px;
  margin-bottom: 15px;
}

#todayReminderModal .reminder-content p {
  font-size: 16px;
  color: rgb(78, 41, 99);
}

#todayReminderModal .reminder-content strong {
  color: #601972;
}

@media (max-width: 1439px) {
  .services {
    padding: 20px 100px;
  }

  .staff-content {
    gap: 200px;
  }

  .location-map iframe {
    width: 45%;
  }
}

@media (max-width: 1299px) {
  .hero-content {
    gap: 100px;
  }

  .hero-title {
    font-size: 52px;
  }

  .services {
    padding: 20px 80px;
  }

  .staff-content {
    gap: 150px;
  }
}

@media (max-width: 1250px) and (min-width: 1200px) {
  .hero-content {
    gap: 120px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-text {
    padding-right: 40px;
  }

  .services {
    padding: 20px 120px;
  }

  .staff-content {
    gap: 180px;
  }

  .location-map iframe {
    width: 42%;
  }
}

@media (max-width: 1199px) {
  .main-container {
    padding-top: 60px;
  }

  .home {
    padding: 40px 40px;
    height: auto;
    min-height: 80vh;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    padding-right: 0;
    max-width: 100%;
  }

  .hero-text .logo {
    align-self: center;
    right: 50%;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-image {
    max-width: 500px;
  }
  .hero-image img,
  .floating-decoration {
    border-radius: 180px 0 180px 0;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .services {
    padding: 20px 60px;
    height: auto;
    min-height: 120vh;
  }

  .services-background {
    height: auto;
    min-height: 140vh;
  }

  .services-footer h2 {
    font-size: 38px;
  }

  .service-item {
    width: 350px;
    height: 500px;
  }

  .staff-container {
    height: auto;
  }

  .staff-content {
    width: 90%;
    gap: 100px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .staff-item {
    width: 400px;
    height: 600px;
  }

  .staff-title h1 {
    font-size: 80px;
  }

  .location-container {
    max-height: 100vh;
  }

  .location-title h1 {
    font-size: 60px;
  }

  .location-map iframe {
    width: 60%;
    height: 400px;
  }
}

@media (max-width: 1055px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 12px 25px;
  }

  .services {
    padding: 20px 40px;
  }

  .services-footer h1 {
    font-size: 18px;
  }

  .services-footer h2 {
    font-size: 32px;
  }

  .services-footer p {
    font-size: 18px;
  }

  .services-box {
    margin-top: 60px;
    gap: 20px;
  }

  .service-item {
    width: 300px;
    height: 450px;
  }

  .service-title h1 {
    font-size: 20px;
  }

  .service-description {
    font-size: 16px;
    padding: 8px;
  }

  .violet-background {
    margin-top: -5px;
  }

  .staff-content {
    gap: 60px;
  }

  .staff-item {
    width: 350px;
    height: 500px;
  }

  .staff-title h1 {
    font-size: 80px;
  }

  .staff-text h2 {
    font-size: 24px;
  }

  .staff-text p {
    font-size: 14px;
  }

  .location-title h1 {
    font-size: 50px;
  }

  .location-text p {
    font-size: 18px;
    padding: 0 20px;
  }

  .location-map iframe {
    width: 70%;
    height: 350px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-text {
    font-size: 18px;
    padding: 0 20px;
  }

  .social-media a {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .home {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-text .logo {
    width: 150px;
    height: 150px;
  }

  .hero-image {
    max-width: 320px;
    min-width: 180px;
  }
  .hero-image img,
  .floating-decoration {
    border-radius: 100px 0 100px 0;
  }

  .services {
    padding: 20px 20px;
  }

  .services-footer h2 {
    font-size: 28px;
  }

  .services-footer p {
    font-size: 16px;
    padding: 0 10px;
  }

  .services-box {
    width: 100%;
    gap: 15px;
  }

  .service-item {
    width: 280px;
    height: 400px;
  }

  .service-title {
    padding: 10px;
  }

  .service-title h1 {
    font-size: 18px;
  }

  .service-description {
    font-size: 14px;
  }

  .staff-content {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }

  .violet-background {
    padding-bottom: 30px;
  }

  .staff-item {
    width: 250px;
    height: 350px;
  }

  .staff-text h2 {
    font-size: 20px;
  }

  .staff-text p {
    font-size: 13px;
  }

  .staff-title {
    height: auto;
  }

  .staff-title h1 {
    font-size: 56px;
  }

  .location-title h1 {
    font-size: 42px;
  }

  .location-text p {
    font-size: 16px;
    padding: 0 15px;
  }

  .location-map iframe {
    width: 90%;
    height: 300px;
  }

  .contact {
    height: auto;
    min-height: 40vh;
    padding: 20px 0;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-text {
    font-size: 16px;
    padding: 0 15px;
  }

  .social-media {
    gap: 20px;
  }

  .social-media a {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .main-container {
    padding-top: 50px;
  }

  .home {
    padding: 20px 15px;
    height: auto;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-text .logo {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
    max-width: 250px;
  }

  .hero-image {
    display: none;
  }

  .services {
    padding: 15px 15px;
  }

  .services-footer h1 {
    font-size: 16px;
  }

  .services-footer h2 {
    font-size: 24px;
  }

  .services-footer p {
    font-size: 14px;
    padding: 0 5px;
  }

  .services-box {
    margin-top: 40px;
    gap: 20px;
  }

  .service-item {
    width: 250px;
    height: 350px;
  }

  .service-title h1 {
    font-size: 16px;
  }

  .service-description {
    font-size: 12px;
    padding: 5px;
  }

  .staff-item {
    width: 200px;
    height: 300px;
  }

  .staff-title h1 {
    font-size: 50px;
  }

  .staff-text h2 {
    font-size: 16px;
  }

  .staff-text p {
    font-size: 10px;
  }

  .location-title h1 {
    font-size: 50px;
  }

  .location-text p {
    font-size: 14px;
    padding: 0 10px;
  }

  .location-map iframe {
    width: 95%;
    height: 250px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .social-media {
    gap: 15px;
  }

  .social-media a {
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 13px;
  }

  .services-footer h2 {
    font-size: 20px;
  }

  .service-item {
    width: 220px;
    height: 320px;
  }

  .violet-background {
    flex: 1;
    margin-top: -5px;
  }

  .staff-content {
    gap: 80px;
    margin-top: 20px;
  }

  .staff-item {
    width: 220px;
    height: 320px;
  }

  .hero-image img {
    border-radius: 150px 0 150px 0;
  }

  .staff-title h1 {
    font-size: 37px;
    margin-bottom: 5px;
  }

  .staff-text h2 {
    font-size: 25px;
  }

  .staff-text p {
    font-size: 13px;
  }

  .location-title h1 {
    font-size: 37px;
  }

  .contact {
    margin-top: 0px;
  }

  .contact-title {
    font-size: 20px;
  }

  .social-media a {
    font-size: 20px;
  }
}
