* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      #ft_wrap {
        margin-top: 0;
      } 

      body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
      }

      .hero {
        background-image: url('../img/2025_wms_hero.png');
        background-size: cover;              /* 화면에 맞게 꽉 채움 */
        background-repeat: no-repeat;         /* 반복 없음 */
        background-position: center;          /* 중앙 정렬 */
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      /* 버튼 래퍼 기본 스타일 */
.hero-buttons-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
  position: static;
}

      /* 모바일에서 배경이미지 변경 */
      @media (max-width: 768px) {
          .hero {
            background-color: #3366FF;
              background-image: url('../img/2025_wms_hero_mobile.png');
              min-height: 70vh; /* 기존 100vh에서 줄임 */
              background-size: contain;
              background-position: top;
        }
}

      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        animation: gradientShift 8s ease-in-out infinite;
      }

      @keyframes gradientShift {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
      }

      .hero-content {
        text-align: center;
        color: white;
        z-index: 3;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .hero h1 {
        font-family: 'Noto Sans KR', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 275px;
        line-height: 1.18;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.18);
        letter-spacing: -2px;
      }

      .hero-subtitle {
        font-family: 'Noto Sans KR', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1.6rem;
        margin-bottom: 48px;
        opacity: 0.98;
        line-height: 1.5;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.12);
      }

      .hero-buttons {
        display: flex;
        gap: 15px;
        margin-top: 700px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .hero-buttons .btn {
        min-width: 150px;
        font-size: 0.9rem;
        padding: 12px 18px;
        white-space: nowrap;
      }

      .hero-buttons .btn.btn-secondary {
        padding-left: 25px;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
      }

      .btn-primary {
        background: linear-gradient(45deg, #FFC848, #ff9500);
        color: white; 
        box-shadow: 0 8px 25px rgba(255,200,72,0.3);
      }

      .btn-primary.light-text-bg {
        color: #333; 
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255,200,72,0.4);
      }

      .btn-secondary {
        background: linear-gradient(45deg, #004880, #003d6b);
        color: white;
        box-shadow: 0 8px 25px rgba(0,72,128,0.3);
      }

      .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0,72,128,0.4);
      }

      .btn-tertiary {
        background: linear-gradient(45deg, #265C5A, #1f4b49);
        color: white;
        box-shadow: 0 8px 25px rgba(38,92,90,0.3);
      }

      .btn-tertiary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(38,92,90,0.4);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 60px;
        color: #004880;
        position: relative;
      }

      .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(45deg, #004880, #003d6b);
        border-radius: 2px;
      }

      .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 60px;
      }

      .about-card {
        text-align: center;
        padding: 40px 30px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
      }

      .about-card:hover {
        transform: translateY(-10px);
      }

      .about-card i {
        font-size: 3rem;
        color: #004880;
        margin-bottom: 20px;
      }

      .about-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #333;
      }

      .event-section {
        background: linear-gradient(135deg, #F1F2F1 0%, #e8e9e8 100%);
      }

      .events-grid {
        display: flex;
        align-items: stretch; 
        gap: 20px;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto; 
      }

      .event-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        flex: 1; 
        min-width: 300px; 
        max-width: 350px; 
        display: flex;
        flex-direction: column;
      }

      .event-card:hover {
        transform: scale(1.02);
      }

      .event-header {
        padding: 30px;
        background: linear-gradient(45deg, #004880, #003d6b);
        color: white;
        text-align: center;
      }

      .event-header h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
      }

      .event-date {
        font-size: 1rem;
        opacity: 0.9;
      }

      .event-body {
        padding: 25px;
        flex: 1; 
        display: flex;
        flex-direction: column;
      }

      .event-details {
        list-style: none;
        margin-bottom: 30px;
      }

      .events-grid .event-details { 
        min-height: 170px; 
      }

      .event-details li {
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .event-details i {
        color: #004880;
        width: 20px; 
      }

      .timeline {
        margin-bottom: 30px;
      }

      .events-grid .timeline { 
        flex-grow: 1; 
      }

      .timeline h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: #333;
      }

      .timeline-item {
        display: flex;
        gap: 15px;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
      }

      .timeline-item:last-child {
        border-bottom: none;
      }

      .timeline-time {
        font-weight: 600;
        color: #004880;
        min-width: 100px; 
      }

      .event-btn {
        width: 100%;
        justify-content: center;
        margin-top: auto; 
      }

      .process-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 60px; 
        flex-shrink: 0;
      }

      .process-arrow i {
        font-size: 2.2rem;
        color: #003d6b;
        font-weight: 900;
      }

      .info-card {
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      }

      .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .info-card:hover::before {
        opacity: 1;
      }

      .info-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        opacity: 0.9;
      }

      .info-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
      }

      .info-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
        opacity: 0.9;
        flex-grow: 1;
      }

      .info-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.2);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.3);
        margin-top: auto; 
        z-index: 3;
      }

      .info-btn:hover {
        background: rgba(255,255,255,0.3);
        color: white;
        transform: translateY(-2px);
      }

      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
      }

      .floating-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(45deg, #FFC848, #ff9500);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 15px 25px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(255,200,72,0.4);
        z-index: 1000;
        animation: pulse 2s infinite;
      }

      /* New Contact Inquiry Section Styles */
      .contact-inquiry-section {
        background-color: #ffffff; 
        padding: 80px 0;
      }

      .contact-inquiry-layout {
        display: flex;
        gap: 40px; 
        align-items: flex-start; 
        margin-bottom: 60px; 
      }

      .contact-inquiry-title-area {
        flex-basis: 35%; 
        text-align: left; 
        padding-right: 20px;
      }

      .contact-inquiry-title-area h2 {
        font-size: 2.8rem; 
        color: #004880;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
      }

      .contact-inquiry-details-area {
        flex-basis: 65%; 
        border-left: 3px solid #004880; 
        padding-left: 40px; 
      }

      .contact-item {
        margin-bottom: 25px;
      }

      .contact-item:last-child {
        margin-bottom: 0;
      }

      .contact-label {
        display: block; 
        font-weight: 700;
        color: #333;
        font-size: 1.2rem;
        margin-bottom: 8px;
      }

      .contact-value {
        display: block; 
        color: #004880; 
        font-size: 1.15rem;
        font-weight: 600;
        word-break: break-all;
      }

      .contact-value a {
        color: #004880;
        text-decoration: none;
      }

      .contact-value a:hover {
        text-decoration: underline;
      }

      .contact-hours {
        display: block;
        font-size: 0.95rem;
        color: #555;
        margin-top: 5px;
      }

      .contact-inquiry-section .hero-buttons .btn {
        font-size: 1rem; 
      }

      .contact-inquiry-section .hero-buttons .btn-primary {
        color: white; 
      }

      /* FAQ Section Styles */
      .faq-section {
        background-color: #f8f9fa;
      }

      .faq-accordion {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.07);
        overflow: hidden;
      }

      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 25px;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        background-color: transparent;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
      }

      .faq-question:hover {
        background-color: #f1f1f1;
      }

      .faq-question .faq-icon {
        font-size: 1.2rem;
        color: #004880;
        transition: transform 0.3s ease;
      }

      .faq-item.active .faq-question .faq-icon {
        /* transform: rotate(180deg); */
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out, padding 0.35s ease-out;
        color: #555;
        font-size: 0.95rem;
        line-height: 0.5;
      }

      .faq-answer p {
        margin: 0;
        padding: 0 25px 0px 25px;
      }

      @media (max-width: 768px) {
        .hero h1 {
          font-size: 2.5rem;
        }

        .hero-subtitle {
          font-size: 1.1rem;
        }

        .hero-buttons {
          margin-top: 780px;
          padding-bottom: 70px;
          flex-direction: column;
          align-items: center;
          gap: 10px;
        }
        
        .hero-buttons .btn {
          min-width: 200px;
        }

        .section {
          padding: 60px 0;
        }

        .section-title {
          font-size: 2rem;
        }

        .info-card {
          padding: 25px;
        }

        .info-icon {
          font-size: 2.5rem;
        }

        .container > div > div[style*="grid-template-columns: 1fr 1fr"],
        .container > div > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
          grid-template-columns: 1fr !important;
        }

        .events-grid {
          flex-wrap: wrap; 
        }
        .events-grid .event-card {
          min-width: 100%; 
          margin-bottom: 20px;
        }
        .events-grid .process-arrow {
          display: none; 
        }
        .events-grid .event-details { 
          min-height: auto;
        }
        .events-grid .timeline { 
          flex-grow: 0;
        }

        .contact-inquiry-layout {
          flex-direction: column;
          gap: 30px;
          align-items: center; 
        }
        .contact-inquiry-title-area {
          text-align: center;
          width: 100%;
          padding-right: 0;
        }
        .contact-inquiry-title-area h2 {
          font-size: 2.2rem;
        }
        .contact-inquiry-details-area {
          border-left: none;
          padding-left: 0;
          width: 100%;
          text-align: center; 
        }
        .contact-inquiry-section .hero-buttons {
          flex-direction: column; 
          align-items: center; 
        }
        .contact-inquiry-section .hero-buttons .btn {
          min-width: 220px; 
          width: 80%;
          max-width: 300px;
          justify-content: center; 
        }

        .faq-question {
          padding: 15px 20px;
          font-size: 1rem;
        }

        .faq-answer {
          line-height: 1.5;
        }
      }

      .hero h1,
      .hero-subtitle {
          font-family: 'Noto Sans KR', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }