/* Hero Section */
.hero {
  position: relative;
  height: 910px;
  background: url("../img/main.jpg") bottom center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.hero h2 {
  font-size: 55px;
  font-family: "S-CoreDream";
  font-weight: 300;
  letter-spacing: -0.1em;
  line-height: 1.4;
  color: #333;
}

.hero h2 b {
  font-weight: 700;
  color: #1d4aa5;
}

.hero p {
  opacity: 0.8;
  font-size: 1.3em;
  max-width: 52ch;
  padding-top: 3rem;
}

/* About Section */
.about {
  padding: 80px 0 30vw;
  text-align: center;
  background: url(../img/about_bg.jpg) bottom center no-repeat;
  background-size: 100%;
}

.section-title {
  font-size: 33px;
  color: #333;
  margin-bottom: 20px;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 60px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-gap: 40px;
  padding-top: 30px;
}

.about-content .eng_box {
  display: flex;
  align-items: center;
}
.about-title {
  font-size: 24px;
  color: #7cb342;
  margin-bottom: 30px;
}

.about-highlight {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

.about-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tag {
  background: #7cb342;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
}

.about-description {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.daum-link {
  display: inline-flex;
  align-items: center;
  background: #f0f0f0;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  background-size: cover !important;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card.psychology {
  background: url(../img/service_card_1.jpg);
}

.service-card.test {
  background: url(../img/service_card_2.jpg);
}
.service-card.counseling {
  background: url(../img/service_card_3.jpg);
}

.service-card.meditation {
  background: url(../img/service_card_4.jpg);
}

.service-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: #f9f9f9;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
}

.step-content h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.step-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.step-arrow {
  font-size: 24px;
  color: #7cb342;
  font-weight: bold;
  margin: 0 10px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info {
  background: url(../img/contact.jpg);
  background-size: cover;
  color: white;
  padding: 55px 40px;
  border-radius: 20px;
}

.contact-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.contact-services ul {
  list-style: none;
}

.contact-services li {
  margin: 5px 0;
  font-size: 16px;
  padding-left: 15px;
  position: relative;
}

.contact-services li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.contact-details {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.phone-numbers {
  text-align: center;
  margin-bottom: 30px;
}

.phone-main {
  font-size: 32px;
  font-weight: bold;
  color: #7cb342;
  margin-bottom: 10px;
}

.phone-mobile {
  font-size: 24px;
  color: #333;
}

.hours {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Gallery Section */
.gallery {
  padding: 60px 0;
  background: white;
}

.gallery-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.gallery-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  aspect-ratio: 1;
  background: #f0f0f0;
  border-radius: 10px;
}

.news-section {
  flex: 1;
}

.news-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

.news-list {
  list-style: none;
}

.news-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-item:last-child {
  border-bottom: none;
}

.news-content {
  flex: 1;
}

.news-text {
  color: #333;
  font-size: 14px;
  margin-bottom: 5px;
}

.news-date {
  color: #999;
  font-size: 12px;
}



/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 45px;
  }
  
  .hero p {
    font-size: 1.2em;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-title {
    font-size: 20px;
  }
  
  .contact-container {
    gap: 40px;
  }
  
  .process-steps {
    gap: 15px;
  }
  
  .step-arrow {
    display: none;
  }
  
  .step {
    min-width: 150px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .step-content h4 {
    font-size: 16px;
  }
  
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    height: 600px;
    background-position: center;
    background-size: cover;
    background-image: url(../img/mainm.jpg);
  }

  .hero-content {
    padding-bottom: 100px;
    justify-content: center;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 1.1em;
    max-width: 100%;
    padding-top: 1.5rem;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  /* About Section */
  .about {
    padding: 60px 0 33vw;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 20px;
  }
  
  /* Services Section */
  .services {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .service-card {
    height: 150px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .service-subtitle {
    font-size: 12px;
  }
  
  /* Process Section */
  .process {
    padding: 60px 0;
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .step {
    min-width: auto;
    margin: 0 auto;
  }
  
  .step-arrow {
    display: none;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .step-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .step-content p {
    font-size: 13px;
  }

  /* Contact Section */
  .contact {
    padding: 60px 0;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info {
    padding: 30px 25px;
  }
  
  .contact-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .contact-services li {
    font-size: 15px;
    margin: 3px 0;
  }
  
  .contact-details {
    padding: 30px 25px;
  }
  
  .contact-header h4 {
    font-size: 18px;
  }
  
  .phone-main {
    font-size: 28px;
  }
  
  .phone-mobile {
    font-size: 22px;
  }
  
  .hours {
    padding: 15px;
  }
  
  .hours p {
    font-size: 14px;
  }

  /* Gallery Section */
  .gallery {
    padding: 50px 0;
  }
  
  .gallery-section {
    flex-direction: column;
    gap: 30px;
  }

  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .news-title {
    font-size: 18px;
  }
  
  .news-text {
    font-size: 13px;
  }
  
  .news-date {
    font-size: 11px;
  }
  
  /* Footer */

}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h2 {
    font-size: 30px;
  }
  
  .hero p {
    font-size: 1em;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .contact-details {
    padding: 25px 20px;
  }
  
  .phone-main {
    font-size: 24px;
  }
  
  .phone-mobile {
    font-size: 20px;
  }
  
  .contact-title {
    font-size: 22px;
  }
  
  .contact-services li {
    font-size: 14px;
  }
}