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

    body {
      font-family: 'Inter', 'Helvetica Neue', sans-serif;
      color: #333;
      line-height: 1.6;
      background: linear-gradient(135deg, #fdfdfd, #f5f7fa);
      background-attachment: fixed;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  animation: fadeUp 1s ease-out forwards;
}

.left-section {
  flex: 1;
  text-align: left;
  padding: 20px;
}


    .logo-title {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }

.logo-title img {
  height: 80px;
  width: auto;
}

.description {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-top: 25px;
}

    .btn-more {
      display: inline-block;
      background-color: #5c7a3f;
      color: white;
      text-transform: uppercase;
      font-weight: 600;
      padding: 14px 32px;
      margin-top: 45px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .btn-more:hover {
      background-color: #47612d;
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }


.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-section img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  animation: fadeIn 1.2s ease-out 0.4s forwards;
  transition: transform 0.4s ease, filter 0.4s ease;
}

    .right-section img:hover {
      transform: scale(1.03);
      filter: brightness(1.03) contrast(1.05);
    }

    @media (max-width: 900px) {
      .container {
        flex-direction: column;
        padding: 50px 20px;
      }

      .left-section {
        max-width: 100%;
        text-align: center;
      }

      .logo-title {
        justify-content: center;
      }

      .btn-more {
        margin: 30px auto 0;
      }

      .right-section {
        margin-top: 40px;
        flex: unset;
      }
    }

.e-con-inner {
    padding-bottom: 100px !important;
}

.btn-more:hover {
  background-color: #47612d !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.btn-more:hover {
  color: white !important;
}


.slider-banner {
  width: 100%;
  overflow: hidden;
  background-color: #f5f7fa;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  margin-bottom: 60px;
  position: relative;
}

.slides {
  display: flex;
  width: 500%;
  animation: slideAnimation 25s infinite;
}

.slides img {
  width: 100%;
  height: 400px; /* 높이 조절 가능 */
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slideAnimation {
  0%   { transform: translateX(0%); }
  20%  { transform: translateX(0%); }
  25%  { transform: translateX(-100%); }
  45%  { transform: translateX(-100%); }
  50%  { transform: translateX(-200%); }
  70%  { transform: translateX(-200%); }
  75%  { transform: translateX(-300%); }
  95%  { transform: translateX(-300%); }
  100% { transform: translateX(-400%); }
}



.flexia-topbar {
    display: none;
}

}


footer#flexia-colophon-top {
    display: none;
}

.flexia-footer-widget-area {
    display: none;
}