/* --- 기본 설정 --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Malgun Gothic', sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.strong {font-weight:600; font-size:1.1em;}

/* --- 헤더 / 메뉴 --- */
.main-header {
     position: fixed; /* 1. absolute -> fixed로 변경하여 화면에 고정 */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; background:#000;
    align-items: center;
    padding: 10px 50px;
    z-index: 100; /* 다른 요소들보다 위에 오도록 설정 */
    color: white;
}


.header-inner{ width: 1360px; display: flex;justify-content: space-between; margin: 0 auto;}

.main-header .logo {display:flex;}

.main-header .logo a {display:flex; gap: 20px; align-items: center;}

.main-header .logo img {
    height: 20px; /* 로고 크기 조절 */
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    position: relative; /* 밑줄(::after)의 위치 기준점이 됩니다. */
    padding: 10px 0; /* 밑줄이 생길 공간 확보 (선택사항) */
}

.main-nav ul li::after {
    content: ''; /* 가상 요소에는 반드시 content 속성이 필요합니다. */
    position: absolute;
    left: 0;
    bottom: -10px;
    
    height: 3px; /* 밑줄 두께 */
    background-color: #ff6b4a; /* 주황색 계열 */
	left: 20px;  /* 링크의 왼쪽 padding 값만큼 안으로 들여오기 */
    right: 20px; /* 링크의 오른쪽 padding 값만큼 안으로 들여오기 */

    transform: scaleX(0); /* 가로 크기를 0으로 만들어 숨김 */
    transition: transform 0.4s ease-out; /* 부드러운 애니메이션 효과 */
}

.main-nav ul li:hover::after,
.main-nav ul li.active::after {
    transform: scaleX(1); /* 가로 크기를 100%로 만들어 표시 */
}

/* 스크롤 시 검은색 메뉴일 때도 active 밑줄이 보이도록 추가 */
.main-header.scrolled .main-nav ul li.active::after {
    transform: scaleX(1);
}

.main-nav ul li a {
    padding: 10px 20px;  color: white;
    font-weight: 400; text-decoration: none;
    transition: color 0.3s;
}



.main-header.scrolled {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 그림자 효과 */
}

/* .main-header.scrolled .main-nav a {
    color: black; 
} */

.logo-white {
    display: flex;  gap: 20px;  align-items: center;
}


.logo-black {
    display: none; 
}

/* 스크롤 시 흰색 로고 숨기고 검은색 로고 보이기 */
.main-header.scrolled .logo-white {
    display: none;
}
.main-header.scrolled .logo-black { color:#000;
    display: flex;  gap: 20px;  align-items: center; /* span 태그이므로 inline으로 설정 */
}

/* --- Swiper 버튼 및 페이지네이션 색상 --- */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: white;
}
.hero-slider .swiper-pagination-bullet {
    background-color: white;
    opacity: 0.7;
}
.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-wrapper { padding-top:10px; }

/* --- 상단 배너 (Hero Section) --- */
.hero-banner {
    position: relative;
    overflow: hidden;
    height: 60vh; /* 화면 높이의 70%를 차지 */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-bg-logo {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 100%; /* 로고의 너비 (필요에 따라 조절) */
    height: 120%;
    background-image: url('../images/logo-lines-default.svg'); /* svg 파일 경로 */
    background-repeat: no-repeat;
    background-position: right center; /* 오른쪽 중앙에 배치 */
    background-size: contain; /* 영역에 맞게 크기 조절 */
    opacity: 0.5; /* 은은하게 보이도록 투명도 조절 */
    z-index: 1; /* 쌓임 순서: 1 */
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 1;
}

.hero-content {
    position: relative; /* 오버레이보다 위에 오도록 */
    z-index: 2;
    width: 1360px;
    padding: 0px; text-align:left;
}

.hero-content h1 {
    font-weight: 600;
    margin-bottom: 20px; font-size: 3rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- 공통 버튼 스타일 --- */
.cta-button {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center; 
}

/* --- 1. 녹색 채우기 스타일 (Ghost Button) --- */
.btn-style-green {
   
	background-color: #00d2a3;
    border: 2px solid #00d2a3;
    color: #00d2a3;
	color: white;
}
.btn-style-green:hover {
    background-color: #00d2a3;
	 transform: translateY(-2px);
   
}

/* --- 2. 파란색 채우기 스타일 (Solid Button) --- */
.btn-style-blue {
    background-color: #00d2ff;
    border: 2px solid #00d2ff;
    color: white;
    /* box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.15); */
}
.btn-style-blue:hover {
    background-color: #00b8e6;
    border-color: #00b8e6;
    transform: translateY(-2px); /* 살짝 떠오르는 효과 */
}

html { scroll-behavior: smooth; }

/* 헤더 높이가 80px인 경우 예시 */
#demo {
  scroll-margin-top: 0px;
}

/* --- 3. 파란색 채우기 스타일 (Solid Button) --- */
.btn-style-orange {
    
    border: 2px solid #fa582d;
    color: white; margin-top:20px;
    /* box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.15); */
}
.btn-style-orange:hover {
    background-color: #fa582d;
    border-color: #fa582d;
   /*  transform: translateY(-2px);  */
}

/* --- 제품 및 서비스 섹션 --- */
.products {
    padding: 80px 0px 120px;
    background-color: #f8f9fa; /* 배경색 */
	background: url('../images/Group 209.jpg') no-repeat right;
	width: 100%;
}

.products-inner {width: 1360px; margin:0 auto; }

.section-title {
    text-align: left;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* --- 카드 슬라이더 --- */
.card-slider {
    display: flex; /* Flexbox를 사용하여 카드들을 가로로 배치 */
    width: 100%;
    height: 400px; /* 슬라이더 전체 높이 */
    gap: 10px; /* 카드 사이의 간격 */
}

.card {
    position: relative;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden; /* 내용이 넘치면 숨김 */
    
    /* 확장/축소 애니메이션의 핵심 */
    flex: 1; /* 기본적으로 모든 카드가 1의 비율을 가짐 */
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* 부드러운 전환 효과 */
}

.card.active {
    flex: 5; /* 활성화된 카드는 5의 비율을 가져 더 넓어짐 */
}

/* --- 카드 콘텐츠 (제목, 링크) --- */
/* 기본 상태(닫힘) */
.card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 60px);
  color: #fff;

  opacity: 0;
  max-height: 0;
  overflow: hidden;

  /* 닫힐 때: opacity 즉시, height는 약간 늦게 줄어들게 */
  transition: opacity .25s ease, max-height .40s ease;
  transition-delay: 0s, .25s;  /* [opacity, max-height] */
  will-change: opacity, max-height;
}

/* 활성(열림) 상태 */
.card.active .card-content {
  opacity: 1;
  max-height: 500px;           /* 내용보다 넉넉하게 */

  /* 열릴 때: height 먼저 커지고, opacity는 살짝 늦게 */
  transition-delay: .25s, 0s;  /* [opacity, max-height] */
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


.card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px; font-weight:300;
}

.card-content a {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.card-content a::after {
  content: ' ›';
  font-size: 1.4em;     /* 화살표 크기 키우기 */
  font-weight: 600;     /* 두께 살짝 강조 */
  margin-left: 4px;     /* 글자와 간격 */
  position: relative;
  top: 1px;             /* 살짝 위로 정렬 */
}



/* --- 소식 섹션 --- */
.news {
    padding: 80px 0px;
   background-color: #f8f9fa; /* 배경색 */ width:100%;
}

.news-inner { width:1360px; margin:0 auto;}

.more-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}
.news-slider {
    margin-top: 40px;
    padding-bottom: 40px; /* 페이지네이션 공간 확보 */
}
.news-card {
    display: block;
    border-radius: 0px;
    overflow: hidden;
   /*  box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover {
   /*  transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12); */
}
.news-thumbnail {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.news-title {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: white;
    color: #333;
    word-break: keep-all; /* 2. 단어 단위로 줄바꿈하여 제목이 깨지는 현상 방지 */
}

@media (min-width: 993px) {
    .main-header.scrolled .main-nav a {
        color: black; /* 데스크톱에서만 글자색을 검은색으로 변경 */
    }
}

.inquiry-cta {
    position: relative; /* 자식 요소(.inquiry-overlay)를 absolute로 띄우기 위한 기준점 */
    padding: 70px 50px;
  /*   background-size: cover; */
    background-position: center;
    /* background-attachment: fixed; */
    color: white;
}

.inquiry-overlay {
    position: absolute; /* 부모 요소를 기준으로 위치를 잡음 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.7); /* 반투명 검은색 필터 적용 */
    /* 여기에 있던 background-image 속성은 제거합니다. */
}

.inquiry-content {
    position: relative; /* 필터(overlay) 위에 내용이 보이도록 stacking context 생성 */
    z-index: 2; /* 확실하게 위에 오도록 z-index 부여 (선택사항) */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* .inquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/01contact.jpg');
} */

.inquiry-content {
    position: relative; /* 오버레이 위에 오도록 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.inquiry-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.inquiry-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-inquiry {
    background-color: transparent;
    border: 2px solid #ff6b4a; /* 주황색 테두리 */
    color: #ff6b4a;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
	    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-inquiry:hover {
    background-color: #ff6b4a; /* 호버 시 배경색 채우기 */
    color: white;
}


/* --- 팝업 스타일 --- */
#popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 반투명 검은 배경 */
    z-index: 1000; /* 다른 모든 요소들 위에 오도록 */
    display: none; /* 평소에는 숨겨둠 */
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.popup-content img {
    display: block;
    max-width: 100%;
    max-height: 80vh; /* 화면 높이에 맞춰 이미지 크기 제한 */
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #333;
    color: white;
}

.popup-footer button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
}



/* --- 문의하기 페이지 컨테이너 --- */
.inquiry-container {
    max-width: 1360px;
    margin: 60px auto;
    padding: 100px 0px 60px;

}

.inquiry-header {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    line-height: 1.6;
}


.inquiry-h2 { font-size: 1.5rem;
    margin-bottom: 30px;}

.inquiry-form  { background-color: #f9f9f9; padding:40px 20px;}



/* 2컬럼 레이아웃을 위한 Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px; /* 세로 간격 20px, 가로 간격 30px */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.privacy-policy-box {
    height: 100px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    padding: 15px;
    background-color: white;
    font-size: 0.9rem;
    color: #666;
}

.form-agree {
    margin-bottom: 30px;
}

.form-agree label {
    margin-left: 5px;
    cursor: pointer;
}

.form-submit-area {
    text-align: center;
}

.submit-btn {
    background-color: transparent;
    border: 2px solid #ff6b4a; /* 주황색 테두리 */
    color: #ff6b4a;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #ff6b4a; /* 호버 시 배경 채우기 */
    color: white;
}


/* --- 공통 페이지 배너 --- */
.page-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
	padding-top:67px;
}
.page-banner h1 {
    font-size: 3rem;
    font-weight: 600;
}

/* --- 컨텐츠 컨테이너 --- */
.content-container {
    max-width: 1360px;
    margin: 50px auto;
    padding: 0px;
}

/* --- 검색창 --- */
.search-bar {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 5px 20px;
}
.search-bar form { display: flex; align-items: center; }
.search-bar i { color: #aaa; }
.search-bar input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 1rem;
}

/* --- 자료실 테이블 --- */
.data-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #333;
}
.data-table th, .data-table td {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}
.data-table th {
    background-color: #f9f9f9;
    font-weight: 500;
}
.data-table .text-center { text-align: center; }
.data-table .col-no { width: 8%; }
.data-table .col-title { width: 60%; }
.data-table .col-date { width: 16%; }
.data-table .col-download { width: 16%; }
.data-table a { color: #333; }

/* --- 페이징 --- */
.pagination { margin-top: 40px; }
.pagination ul { display: flex; justify-content: center; list-style: none; padding: 0; }
.pagination li { margin: 0 5px; }
.pagination a {
    display: block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}
.pagination a:hover { background-color: #f0f0f0; }
.pagination a.active {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* --- 소식 페이지 --- */
.news-page .page-title { text-align: left; margin-bottom: 40px; }
.news-page .page-title h1 { font-size: 2.5rem; }
.news-page .page-title p { color: #666; }

.filter-bar {
    display: flex;
    justify-content: flex-end; /* 검색창을 오른쪽 끝으로 정렬 */
    align-items: center;
    margin-bottom: 40px;
}

.search-form { display: flex; border: 1px solid #ddd; border-radius: 20px; overflow: hidden; }
.search-form input { border: none; padding: 10px 15px; outline: none; min-width: 250px; }
.search-form button { border: none; background-color: white; padding: 0 15px; cursor: pointer; color: #777; }

/* 소식 목록 그리드 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 한 줄에 3개씩 (6개 표시를 위해 3x2 그리드) */
    gap: 30px;
    min-height: 200px; /* 내용이 없을 때 최소 높이 유지 */
}
.no-results {
    grid-column: 1 / -1; /* 그리드의 모든 열을 차지하도록 설정 */
    text-align: center;
    color: #000;
    padding: 50px 0;
}



/* --- 게시글 상세 보기 페이지 --- */
.post-view {
    padding: 40px 0;
}

/* 게시글 제목 부분 */
.post-header {
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.post-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.post-date {
    color: #000;
    font-size: 0.9rem;
}

/* CKEditor로 작성된 본문 영역 */
.post-content {
    line-height: 1.8; /* 가독성을 위한 줄간격 */
    font-size: 1rem;
    min-height: 300px; /* 내용이 적어도 최소 높이 유지 */
    color: #333;
}

/* 본문 안의 이미지 반응형 처리 (중요!) */
.post-content img {
    max-width: 100%;
    height: auto;
    margin: 30px auto; /* 이미지 위아래 여백 */
    display: block;
    border-radius: 8px;
}

/* 본문 안의 제목 태그 스타일 */
.post-content h1, .post-content h2, .post-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.4;
}

/* 본문 안의 인용구 스타일 */
.post-content blockquote {
    border-left: 4px solid #e0e0e0;
    padding-left: 15px;
    margin: 20px 0;
    color: #666;
}

/* 목록으로 돌아가기 버튼 영역 */
.post-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
}
.btn-list {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #555;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-list:hover {
    background-color: #333;
    color: white;
}


.page-banner.solution-banner {
    height: 450px;
}


.page-banner.solution-banner h1 {
    font-size: 3rem;
    font-weight: 600; width:1360px;     margin: 0 auto 30px;
}

.solution-container {
    max-width: 100%;
    margin: 0px auto;
    padding: 0px;
}


.solution-tabs {
       display: flex;
    border: solid 1px #ff6b4a;
    padding: 0 0px;
    border-radius: 50px;
	background-color:#fff;
    margin: 0px auto 0;
    position: relative;
    z-index: 10;
    width: 1360px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tab-btn {
    flex: 1;
    padding: 20px 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 500;
    color: #555;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s; text-align:center;
}

.tab-btn:focus {
    outline: none;
}

.tab-btn.active {
    background-color: #ff6b4a; /* 활성 탭 배경색 */
    color: white;
    font-weight: 500;
}

.tab-btn:not(:last-child) {
    border-right: 1px solid #ff6b4a;
}
/* 탭 버튼 둥근 모서리 처리 */
.tab-btn:first-child.active { border-radius: 50px 0 0 50px; }
.tab-btn:last-child.active { border-radius: 0 50px 50px 0; }


/* --- 탭 콘텐츠 --- */
.tab-content {
    display: none; /* 모든 콘텐츠를 일단 숨김 */
}
.tab-content.active {
    display: block; /* active 클래스가 있는 콘텐츠만 보여줌 */
}



/* --- 탭 메뉴 컨테이너 --- */
.solution-tabs-container {
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

/* --- 1. 데스크톱 탭 버튼 스타일 --- */


.tab-btn:not(:last-child) { border-right: 1px solid #ff6b4a; }
.tab-btn.active { background-color: #ff6b4a; color: white; font-weight: bold; }
.tab-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.4); }

/* --- 2. 모바일 드롭다운 스타일 --- */
.solution-tabs-mobile {
    display: none; /* 평소에는 숨김 */
}
#mobile-tab-select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
  
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 16px;
}


.solution-content {
    position: relative;
    padding: 160px 50px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 어두운 오버레이 */
}

.solution-text {
        position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    text-align: left;
}

.solution-text h2 {
    font-size: 3.3rem;
    font-weight: bold;
    margin-bottom: 20px; 
}

.solution-text p {
    font-size: 1.4rem;
    line-height: 1.8;
	font-weight:300;padding-bottom: 50px;
}

.btn-ghost-green {
    /* Basic styling */
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;

    /* Appearance */
    color: #0ccc6b; /* Bright green text color */
    background-color: transparent;
    border: 2px solid #0ccc6b; /* Matching bright green border */
    border-radius: 50px; /* Creates the pill shape */

    /* Hover effect */
    transition: all 0.3s ease-in-out;
}

.btn-ghost-green:hover {
    background-color: #0ccc6b; /* Fills the button with green on hover */
    color: #111; /* Changes text color to dark for contrast */
   
}


/* --- Feature Description Section --- */
.feature-description {
    padding: 80px 20px; /* Vertical and horizontal padding */
    background-color: #ffffff; /* White background */
    text-align: center; /* Center all text inside */
}

.feature-description h2 {
    font-size: 2.5rem; /* Large font size for the heading */
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-description .text-green {
    color: #0ccc6b; /* The specific green color */
}

.feature-description p {
    font-size: 1.1rem;
    color: #555; /* Dark gray for the paragraph text */
    line-height: 1.8; /* Improves readability */
    max-width: 700px; /* Prevents lines from being too wide */
    margin: 0 auto; /* Centers the paragraph block itself */
}


/* --- Feature Columns Section --- */
.feature-columns {
    padding: 60px 20px;
    background-color: #f8f9fa; /* Very light gray background */
}

.columns-wrapper {
    display: flex;
    justify-content: center; /* 중앙 정렬로 더 예측 가능한 정렬을 유도 */
    max-width: 1360px; /* 더 나은 간격을 위해 조정 */
    margin: 0 auto;
    gap: 80px; /* 컬럼 사이의 간격을 늘림 */
}

.feature-column {
    flex: 1;
    text-align: center;
    max-width: 320px;
    position: relative; /* 가상 요소의 위치 기준점으로 설정 */
}

/* 가상 요소를 사용하여 세로선 생성 */
.feature-column:not(:first-child)::before {
    content: ""; /* 가상 요소에는 필수 */
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px; /* gap 크기의 절반만큼 왼쪽으로 이동하여 중앙에 배치 */
    width: 1px;
    background-color: #e0e0e0;
}

.feature-column h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.text-green {
    color: #0ccc6b;
}

.text-sky {color: #00D2FF}

.feature-column p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}


.soc-feature {
    padding: 80px 20px;
    background-color: #ffffff;
}

.soc-feature .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.soc-feature .section-title h3 {
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 600;
}

.soc-wrapper {
    display: flex;     padding: 60px 0px;
    align-items: center; /* Vertically align items in the middle */
    gap: 50px; /* Space between video and text */
    max-width: 1360px;
    margin: 0 auto;
}

.soc-video-column {
    flex: 1.2; /* Make the video column slightly larger */
}

.soc-video-column video {
    width: 100%;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Soft shadow */
    display: block;
}

.soc-video-column img {
    width: 100%;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Soft shadow */
    display: block;
}

.soc-text-column {
    flex: 1; /* Text column takes up the remaining space */
}

.soc-text-column h4 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px; color:#000;
}

.soc-text-column p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 30px;
}

.soc {display: flex;
    justify-content: flex-start;
    align-items: center;}

/* --- New Green Outline Button Style --- */
.btn-outline-green {
    display: inline-block;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: #0ccc6b;
    background-color: transparent;
    border: 2px solid #0ccc6b;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-green:hover {
    background-color: #0ccc6b;
    color: white;
}


.btn-outline-blue {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #00D2FF; /* 밝은 파란색 텍스트 */
    background-color: transparent;
    border: 2px solid #00D2FF; /* 밝은 파란색 테두리 */
    border-radius: 50px; /* 둥근 모양 */
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background-color: #00D2FF; /* 호버 시 배경 채우기 */
    color: white; /* 호버 시 텍스트 색상 변경 */
}


/* --- Challenge Section --- */
.challenge-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.challenge-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.challenge-section .section-title p {
    font-size: 1.5rem;
    color: #000; font-weight: 500;
    margin-bottom: 10px;
}

.challenge-section .section-title h2 {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5; color:#000;
}

.challenge-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between columns */
    max-width: 1360px;
    margin: 0 auto;
}

.challenge-column { color: #000;
    flex: 1;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e0f7ff; /* Light blue border */
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.3); /* The blue glow effect */
    transition: transform 0.3s;
}

.challenge-column:hover {
    transform: translateY(-10px); /* Lifts the card slightly on hover */
}

.challenge-icon {
    margin-bottom: 25px;
}

.challenge-icon img {
    height: 100px; /* Adjust icon size as needed */
}

.challenge-column h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.challenge-column p {
   font-size: 1.2rem;
    line-height: 1.7;
    word-break: keep-all;
}


/* --- Prisma SASE 소개 섹션 (고유 클래스) --- */
.sase-intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center; color:#000;
}

.sase-intro-header {
    margin-bottom: 30px;
}

.sase-intro-subtitle {
    font-size: 1.5rem;
    color: #000; font-weight: 500;
    margin-bottom: 10px;
}

.sase-intro-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.5;
}

.sase-intro-highlight {
    color: #00D2FF; /* 하늘색 텍스트 */
}

.sase-intro-paragraph {
        max-width: 1200px; word-break: keep-all;
    margin: 0 auto;
    font-size: 1.4rem;
    color: #000;
    line-height: 1.8;
}



/* --- 차세대 방화벽(NGFW) 히어로 섹션 --- */
.ngfw-hero {
        position: relative;
    background-image: url(../images/Mask-Group-51-2.jpg);
    background-size: cover;
    padding: 80px 20px;
    overflow: hidden;
    height: 860px;
}


.ngfw-wrapper {
    position: relative; /* 곡선 효과 위에 콘텐츠가 오도록 */
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1360px;
    margin: 0 auto;
}

.ngfw-image-column {
    flex: 1.2;
    min-height: 350px; /* 이미지가 보일 수 있도록 최소 높이를 지정합니다 */
   
    background-size: contain; /* div 영역 안에 이미지가 모두 보이도록 설정 */
    background-position: center; /* 이미지를 중앙에 배치 */
    background-repeat: no-repeat; /* 이미지가 반복되지 않도록 설정 */
}

.ngfw-text-column {
    flex: 1;
    color: #333; /* 어두운 텍스트 색상 */
}

.ngfw-text-column h2 {
    font-size: 3rem; color:#000;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* --- 새로운 노란색 테두리 버튼 스타일 --- */
.btn-outline-yellow {
    display: inline-block;
        padding: 12px 30px;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-yellow:hover {
    background-color: #333;
    color: white;
	 border: 2px solid #333;
}

/* --- 반응형 (모바일) --- */
@media (max-width: 992px) {
    .ngfw-wrapper {
        flex-direction: column; /* 모바일에서 세로로 쌓기 */
        text-align: center;
    }
}


/* --- NGFW 소개 섹션 --- */
.ngfw-intro {
    padding: 140px 20px 80px;
    background-color: #ffffff; /* 흰색 배경 */
}

.intro-wrapper {
    max-width: 1360px; /* 콘텐츠의 최대 너비 설정 */
    margin: 0 auto;   /* 콘텐츠를 페이지 중앙에 배치 */
    text-align: center; /* 모든 텍스트를 가운데 정렬 */
}

.ngfw-intro h2 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000;
}

.ngfw-intro p {
    font-size: 1.7rem;
    color: #000;
    line-height: 1.8; /* 가독성을 위한 줄간격 */
}


/* --- NGFW Series 섹션 --- */
.ngfw-series {
    padding: 80px 20px;
    background-color: #ffffff;
}

.series-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px; /* 컬럼 사이 간격 */
    max-width: 1360px;
    margin: 0 auto; padding-bottom:50px;
}

.series-column {
    flex: 1; /* 각 컬럼이 동일한 너비를 가짐 */
    display: flex;
    flex-direction: column; /* 내부 아이템을 세로로 정렬 */
}

.series-image {
    margin-bottom: 50px;
    text-align: center;
}
.series-image img {
    max-height: 300px; /* 이미지 최대 높이 제한 */
    width: auto;
}

.series-image-2 {
        margin-bottom: 50px;
    text-align: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.series-image-2 img {
    max-width: 350px; /* 이미지 최대 높이 제한 */
    width: auto;
}


.series-image-3 {
        margin-bottom: 50px;
    text-align: center;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.series-image-3 img {
    max-width: 350px; /* 이미지 최대 높이 제한 */
    width: auto;
}

.series-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
}
.series-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.series-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px; color:#000;height: 80px;
}

.series-column p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* 단락이 남은 공간을 모두 차지하여 링크를 맨 아래에 위치시킴 */
}


.series-links a:hover {
    color: #007bff;
}
/* --- 텍스트 밑줄 스타일 (최종 수정본) --- */

/* 1. 링크(a) 태그의 전체적인 스타일을 정의합니다. */
.series-links a {
    display: block; /* 링크가 한 줄 전체를 차지하도록 설정 */
    padding: 15px 0;

    color: #333;
    font-weight: 500;
}

/* 2. 텍스트를 감싸는 span 태그의 스타일을 정의합니다. */
.series-links .underline-text {
    position: relative;    /* 💡 밑줄(::after)의 위치 기준점이 되도록 설정 (이것이 핵심!) */
    padding-bottom: 3px;   /* 텍스트와 밑줄 사이의 간격을 만듭니다. */
}

/* 3. span의 가상요소(::after)로 밑줄을 만듭니다. */
.series-links .underline-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;          /* span의 너비(텍스트 너비)와 동일하게 설정됩니다. */
    height: 1px;
    background-color: #000; /* 밑줄 색상 */
}




/* --- 데모 신청 페이지 소개 섹션 --- */
.demo-intro {
    padding: 80px 20px;
    background-color: #f3fcf9; /* 매우 연한 회색 배경 */
    margin-bottom: 40px; /* 폼과의 간격 */
}

.intro-text-wrapper {
    max-width: 1360px; /* 텍스트 영역의 최대 너비 */
    margin: 0 auto;   /* 가운데 정렬 */
    text-align: center; /* 텍스트 가운데 정렬 */
}

.demo-intro p {
    font-size: 1.3rem;
    color: #000; /* 기본 텍스트 색상 */
    line-height: 1.8;
    margin-bottom: 25px; /* 단락 사이 간격 */ font-weight:500;
}

.demo-intro p:last-child {
    margin-bottom: 0; /* 마지막 단락 아래 여백 제거 */
}








/* --- 반응형 (모바일) --- */
@media (max-width: 992px) {
    .series-wrapper {
        flex-direction: column; /* 모바일에서 세로로 쌓기 */
        align-items: center;
    }
    .series-column {
        max-width: 500px; /* 모바일에서 최대 너비 제한 */
    }
}






/* --- SecOps Feature Section --- */
.secops-feature {
    padding: 80px 20px;
    background-color: #ffffff;
}
.secops-feature .section-title {
    text-align: center; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.secops-feature .section-title h2 {
    font-size: 2rem; font-weight: bold; margin-bottom: 15px;
}
.secops-feature .section-title p {
    color: #555; line-height: 1.7;
}

.feature-card-wrapper {
    display: flex; justify-content: center; gap: 20px; max-width: 1200px; margin: 0 auto;
}

.feature-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e0f2f1;
    box-shadow: 0 0 25px rgba(12, 204, 107, 0.15);
    transition: all 0.4s ease-out;
    cursor: pointer;
}

/* --- 호버 효과 --- */
.feature-card:hover {
    background-color: #0ccc6b;
    color: white;
    transform: translateY(-5px);
}
.feature-card:hover p, .feature-card:hover a {
    color: white;
}

/* --- 아이콘 처리 --- */
.card-icon {
    margin-bottom: 25px; height: 120px;
}
.card-icon img {
    height: 120px; width: auto;
}
.card-icon .icon-hover {
    display: none;
}
.feature-card:hover .icon-default {
    display: none;
}
.feature-card:hover .icon-hover {
    display: inline-block;
}

/* --- 텍스트 및 제목 처리 --- */
.card-title {
    font-size: 1.5rem; font-weight: 600; margin-bottom: 15px; transition: all 0.3s;
}
.feature-card p {
    font-size: 1rem; color: #555; line-height: 1.7; margin-bottom: 20px; transition: color 0.3s;
}
.feature-card a {
    font-size: 0.9rem; font-weight: bold; color: #000; text-decoration: none; transition: color 0.3s;
}

/* ▼▼▼ 이 부분이 핵심적인 수정사항입니다 ▼▼▼ */
.text-hover { display: none; } /* 호버 텍스트는 평소에 숨김 */
.divider {
    border: none;
    height: 1px;
    background-color: white;
    opacity: 0.5;
    margin: 0 auto 20px;
    width: 100%;
}

.feature-card:hover .card-title {
    display: none; /* 호버 시 제목 숨김 */
}
.feature-card:hover .text-default {
    display: none; /* 호버 시 기본 텍스트 숨김 */
}
.feature-card:hover .text-hover {
    display: block; /* 호버 시 호버 텍스트 표시 */
}
/* ▲▲▲ 수정 완료 ▲▲▲ */


/* --- 반응형 (모바일) --- */
@media (max-width: 992px) {
    .feature-card-wrapper {
        flex-direction: column; align-items: center;
    }
    .feature-card {
        max-width: 500px; width: 100%;
    }
}

/* --- 관련 제품 섹션 --- */
.related-products {
    padding: 80px 20px;
    background-color: #f8f9fa; /* 연한 회색 배경 */
}

.related-products-wrapper {
    align-items: flex-start; /* 상단 정렬 */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- 왼쪽 링크 목록 컬럼 --- */
.product-links-column {
    flex: 1;
    padding-top: 10px;
}

.product-links-column h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 25px;
}

/* --- 관련 제품 링크 목록 --- */
.product-list-links {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 2px solid #e0e0e0; /* 상단 선을 더 두껍게 */
}

.product-list-links li {
    border-bottom: 1px solid #e0e0e0; /* 각 항목의 하단 선 */
}

.product-list-links a {
    display: flex; /* 텍스트와 화살표 정렬을 위해 flexbox 사용 */
    justify-content: space-between; /* 양쪽 끝으로 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    padding: 18px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.product-list-links a:hover {
    color: #007bff; /* 마우스 오버 시 색상 변경 */
}

.product-list-links .arrow-blue {
    font-weight: bold;
    color: #007bff; /* 화살표 색상을 파란색으로 지정 */
    font-size: 1.2rem;
}

/* --- 오른쪽 비디오 컬럼 --- */
.product-video-column {
    flex: 1.5;
    position: relative; padding-top:40px;
}

.product-video-column .youtube-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 비율 */
    background-color: black;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-video-column .youtube-player img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-video-column .youtube-player .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-video-column .youtube-player .play-button::before {
    content: '';
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}
.product-video-column .youtube-player.playing .play-button {
    display: none;
}
.product-video-column .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- 반응형 (모바일) --- */
@media (max-width: 992px) {
    .related-products-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .product-links-column,
    .product-video-column {
        width: 100%;
        max-width: 500px;
    }
}


.img-100 {padding: 60px 0px;}
.img-100 img {width:100%;}
.img-200 {padding: 0px 0px;}
.img-200 img {width:100%;}
#pc {display:block;}
#mo {display:none;}

/* --- Responsive for Mobile --- */
@media (max-width: 992px) {
    .challenge-wrapper {
        flex-direction: column; /* Stack columns vertically */
        align-items: center;
    }
    .challenge-column {
        max-width: 500px; /* Limit width on mobile */
    }
	
	#pc {display:none;}
#mo {display:block;}


.feature-description {
    padding: 20px 20px;

}


}





@media (max-width: 768px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* 카드 스타일 (메인 페이지와 공유) */
.news-card { display: block; text-decoration: none; }
.news-card:hover .news-thumbnail { transform: scale(1.05); }
.news-card .news-thumbnail {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
 /*    border-radius: 8px; */
    transition: transform 0.3s;
}
.news-card-content { padding: 15px 5px; }
.news-card-content .news-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
  padding: 10px 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-card-content .news-date { color: #000; font-size: 0.9rem; }

/* 페이징 (files.php와 공유 가능) */
.pagination { margin-top: 40px; }
.pagination ul { display: flex; justify-content: center; list-style: none; padding: 0; }
.pagination li { margin: 0 5px; }
.pagination a { display: block; padding: 8px 12px; border: 1px solid #ddd; color: #333; text-decoration: none; }
.pagination a:hover { background-color: #f0f0f0; }
.pagination a.active { background-color: #333; color: white; border-color: #333; }


/* --- 반응형 헤더 (모바일 메뉴) --- */

/* 햄버거 버튼과 닫기 버튼은 평소(데스크톱)에 숨김 */
.mobile-menu-btn,
.close-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}


/* ==========================================================================
   Prisma 아코디언 섹션 (이미지 위치 최종 수정본)
========================================================================== */

.prisma-accordion {
    max-width: 1360px;
    margin: 80px auto;
    padding: 0 20px;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
    position: relative; /* 자식인 이미지를 absolute로 띄우기 위한 기준점 */
}
.accordion-item:first-child {
    border-top: 1px solid #e0e0e0;
}
.accordion-item.active {
    background-color: #effdff; min-height: 350px;
}

/* --- 아코디언 헤더 (클릭 영역) --- */
.accordion-header {
    display: flex;
    align-items: center;
    padding: 25px 10px;
    cursor: pointer;
    width: 55%; /* 오른쪽 이미지 공간을 비워두기 위해 너비 제한 */
}
.accordion-icon { margin-right: 20px; }
.accordion-icon img { width: 32px; }
.accordion-icon .icon-active { display: none; }
.accordion-item.active .accordion-icon .icon-default { display: none; }
.accordion-item.active .accordion-icon .icon-active { display: block; }
.accordion-header h4 { font-size: 1.4rem; font-weight: 500; color: #000; }
.accordion-item.active .accordion-header h4 { color: #333; font-weight: 600; }

/* --- 아코디언 콘텐츠 (열리는 영역) --- */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.accordion-item.active .accordion-content {
    max-height: 500px;
}
.accordion-content .content-inner {
    padding: 0 30px 30px 62px;
}

/* 텍스트 영역 */
.accordion-text-content {
    width: 55%;
    padding-right: 40px;
}
.accordion-text-content > p {
    font-size: 1.2rem;
    color: #000; font-weight: 500; 
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ▼▼▼ 이미지 영역 스타일 수정 ▼▼▼ */
.accordion-image-content {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 40%;
    z-index: 5;

    /* 1. 평소에는 이미지를 투명하게 숨깁니다. */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

/* 2. active 상태일 때만 이미지를 부드럽게 보여줍니다. */
.accordion-item.active .accordion-image-content {
    opacity: 1;
    visibility: visible;
}
/* ▲▲▲ 이미지 영역 스타일 수정 완료 ▲▲▲ */

.accordion-image-content img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* --- 아코디언 내부 2단 컬럼 레이아웃 --- */
.highlight-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-top: 10px;
}

/* ▼▼▼ 이 부분을 수정/추가하세요 ▼▼▼ */
.card-text-content {
    flex: 0 0 55%; /* 너비를 55%로 고정하고 늘어나거나 줄어들지 않게 설정 */
    width: 55%;
}

.card-image-content {
    flex: 0 0 40%; /* 너비를 40%로 고정 */
    width: 40%;
}
/* ▲▲▲ 여기까지 수정/추가 ▲▲▲ */

.card-image-content img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* --- 새로운 하늘색 테두리 버튼 스타일 --- */
.btn-outline-lightblue {
    display: inline-block;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: #00D2FF;
    background-color: transparent;
    border: 2px solid #00D2FF;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-lightblue:hover {
    background-color: #00D2FF;
    color: white;
}

/* --- 링크 리스트 스타일 (재사용) --- */
.highlight-links { list-style: none; padding: 0; margin: 0; }
.highlight-links li { border-bottom: 1px solid #d0e0e5; }
.highlight-links li:first-child { border-top: 1px solid #d0e0e5; }
.highlight-links a { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s; }
.highlight-links a:hover { color: #007bff; }
.highlight-links .arrow { font-weight: bold; color: #000; }

/* --- 반응형 (모바일) --- */
@media (max-width: 992px) {

.header-inner {
    width: 100%;
	}
    .accordion-header {
        width: 100%;
    }
    .accordion-image-content {
        position: static; /* absolute 해제 */
        width: 100%;
        margin-top: 20px;
        opacity: 1; /* 모바일에서는 항상 보이도록 */
        visibility: visible;
    }
    .accordion-text-content {
        width: 100%;
        padding-right: 0;
    }
    .accordion-content .content-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}




@media (max-width: 1360px) {
	.solution-tabs { /* 데스크톱 탭 숨김 */
        display: none;
    }
    .solution-tabs-mobile { /* 모바일 드롭다운 보임 */
        display: block;
    }
 }	

/* 화면 너비가 992px 이하일 때 적용될 스타일 */
@media (max-width: 992px) {




.section-title h2 {
    font-size: 1.5rem;}
.hero-banner {
   
    height: auto;
	}
.hero-content h1 {
 
    padding-top:60px;
    font-size: 1.5rem; line-height: 1.3;
}
.btn-style-orange {
    margin-top: 20px;
	}
.hero-content p {        margin-bottom: 10px;
    font-size: 1rem;} 

    /* 1. 햄버거 버튼 보이기 */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px; /* 줄 사이 간격 */
        padding: 5px;
    }
    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 3px;
        background-color: white; /* 기본 색상 */
        border-radius: 3px;
        transition: background-color 0.4s;
    }
    .main-header.scrolled .mobile-menu-btn span {
        background-color: black; /* 스크롤 시 색상 변경 */
    }

    /* 2. 기존 메뉴를 화면 밖으로 숨기고, 슬라이드 패널로 디자인 */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px; /* 패널 너비 */
        height: 100%;
        background-color: #1a1a1a;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        
        transform: translateX(100%); /* 오른쪽 화면 밖으로 숨김 */
        transition: transform 0.4s ease-in-out;
    }
    .main-nav.is-open {
        transform: translateX(0); /* is-open 클래스가 붙으면 화면 안으로 슬라이드 */
    }

    /* 3. 메뉴 링크들을 세로로 배열 */
    .main-nav ul {
        flex-direction: column;
        padding-top: 80px; /* 닫기 버튼 공간 확보 */
    }
    .main-nav ul li {
        width: 100%;
    }
    .main-nav ul li a {
        display: block;
        padding: 15px 30px;
        color: white; /* 모바일 메뉴 글자색 */
        border-bottom: 1px solid #333;
    }

    /* 4. 모바일 메뉴의 밑줄 효과는 제거 (선택사항) */
    .main-nav ul li::after {
        display: none;
    }

    /* 5. 닫기 버튼 보이기 및 스타일링 */
    .close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        color: white;
    }
	
	 /* 1. 슬라이더를 세로로 쌓이도록 변경 */
    .card-slider {
        flex-direction: column; /* 가로(row) -> 세로(column)로 변경 */
        height: auto; /* 높이는 자동으로 조절되도록 변경 */
    }

    /* 2. 각 카드의 스타일을 모바일에 맞게 조정 */
    .card {
        flex: auto; /* flex 비율을 모두 동일하게 초기화 */
        height: 250px; /* 모든 카드의 높이를 고정 */
    }

    /* 3. 모바일에서는 'active' 클래스가 크기 변경에 영향을 주지 않도록 설정 */
    .card.active {
        flex: auto; /* 확장되는 효과를 제거 */
    }

    /* 4. 카드 안의 텍스트가 항상 보이도록 변경 */
    .card .card-content {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); /* 텍스트 가독성을 위한 배경 추가 */
        padding: 20px;
        width: 100%;
        bottom: 0;
        left: 0; max-height: 500px;
    }
    
    .card .card-content h3 {
        font-size: 1.5rem; /* 모바일에서 제목 폰트 크기 조절 */
    }
	
	 .card .card-content h4 {
        display:none;
    }
	
	.products { background-color: #f8f9fa; /* 배경색 */
	background: url('../images/Group 209.jpg') no-repeat top;
    padding: 40px 0px 40px;}
	
	.news {padding: 40px 0px 40px;}
	
	
	.news-inner { width:100%; margin:0 auto; padding:0px 20px;}
	
	.products-inner { width:100%; margin:0 auto; padding:0px 20px;}
	
	.inquiry-cta {
        padding: 50px 20px; /* 모바일에서 섹션의 상하좌우 여백 조절 */
    }

    /* 1. 텍스트와 버튼을 세로로 쌓이도록 변경 */
    .inquiry-content {
        flex-direction: column; /* 가로(row) -> 세로(column) */
        gap: 40px; /* 텍스트와 버튼 사이의 간격 */
    }

    /* 2. 텍스트를 중앙 정렬 */
    .inquiry-text {
        text-align: center;
    }

    .inquiry-text h2 {
        font-size: 1.8rem; /* 모바일에서 제목 폰트 크기 조절 */
    }

    .inquiry-text p {
        font-size: 0.9rem; /* 모바일에서 부제목 폰트 크기 조절 */        line-height: 1.5;
    }
	
	.section-title p {
   padding:0px 0px 20px;
}
	
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
    text-align: left;
}


.news-card .news-thumbnail {
    /* height: 200px; 속성을 삭제하고 아래 코드를 추가합니다. */
    aspect-ratio: 16 / 9; /* 16:9 비율을 유지하도록 설정 */
    
    background-color: #eee;
    background-size: contain;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.news-title {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: white;
    color: #333;
    word-break: keep-all; /* 2. 단어 단위로 줄바꿈하여 제목이 깨지는 현상 방지 */
}



 /* 1. 헤더의 좌우 여백을 줄여줍니다. */
    .header-inner {
        padding: 10px 0px;
    }

    /* 2. 기존 메뉴(nav)를 화면 밖으로 숨깁니다. */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #1a1a1a;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        
        transform: translateX(100%); /* 오른쪽으로 숨김 */
        transition: transform 0.4s ease-in-out;
    }

    /* 3. 햄버거 버튼 클릭 시 메뉴가 보이도록 합니다. */
    .main-nav.is-open {
        transform: translateX(0); /* 화면 안으로 나타남 */
    }

    /* 4. 메뉴 항목들을 세로로 정렬합니다. */
    .main-nav ul {
        flex-direction: column;
        padding-top: 80px;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 30px;
        color: white;
        border-bottom: 1px solid #333;
    }

    /* 5. 햄버거 버튼을 보여줍니다. */
    .mobile-menu-btn {
        display: flex;
    }
	
	
	.main-nav.is-open + .mobile-menu-btn {
        display: none;
    }
    
    /* 6. 메뉴 안의 닫기 버튼을 보여줍니다. */
    .close-btn {
        display: block;
    }
	
	.main-nav .close-btn {
       display: none;
    }
    /* 메뉴가 열렸을 때(.is-open) 닫기 버튼 보이기 */
    .main-nav.is-open .close-btn {
       display: block;
    }
	
	.main-header {
   
    padding: 10px 20px;
 
}


 /* 1. 2컬럼 그리드를 1컬럼으로 변경 */
    .form-grid {
        grid-template-columns: 1fr; /* 컬럼을 1개로 설정 */
        gap: 0; /* 가로 간격은 필요 없으므로 제거 */
    }

    /* 2. 모바일에서 컨테이너의 좌우 여백을 줄여줍니다. */
    .inquiry-container {
     
        padding: 20px;
    }

    /* 3. 각 입력 필드 사이의 간격을 일관되게 조정 */
    .form-group {
        margin-bottom: 20px;
    }
	
	.btn-inquiry {
     padding: 6px 35px;
	 margin: 20px; 
   
}

.feature-columns {
        padding: 60px 20px; /* 모바일에서 섹션 상하좌우 여백 조절 */
    }

    /* 1. 컬럼들을 세로로 쌓이도록 변경 */
    .columns-wrapper {
        flex-direction: column; /* 가로(row) -> 세로(column) */
        align-items: center; /* 컬럼들을 가운데 정렬 */
        gap: 40px; /* 컬럼 사이의 세로 간격 */
    }

    /* 2. 각 컬럼의 최대 너비를 설정하여 너무 넓어지지 않게 함 */
    .feature-column {
        max-width: 500px;
        width: 100%; /* 화면 너비에 맞게 조절 */
    }

    /* 3. 세로선 제거 */
    .feature-column:not(:first-child)::before {
        display: none; /* 세로선 숨김 */
    }

    /* 4. 컬럼 내부 여백 조절 (선택사항) */
    .feature-column {
        padding: 0 15px;
    }

.soc-wrapper {
        flex-direction: column; /* 모바일에서 세로로 쌓기 */
        margin-bottom: 40px; padding:0px; gap:30px;
    }
	
	.soc-feature .section-title h3 {
    font-size: 1.4rem;}

.soc-feature {
    padding: 40px 20px;}
	
	.soc-feature .section-title {
    margin-bottom: 20px;
	}
	.soc-text-column h4 {
    font-size: 1.5rem;}
	
	.soc-text-column p {
    margin-bottom: 10px;font-size: 0.9rem;}
	
	.btn-ghost-green {
    font-size: 1rem;}
	.btn-outline-blue {font-size: 1rem;}
	
	.challenge-section {
    padding: 20px 20px;
	}
	
	/* 제목 상하 여백 조절 (선택사항) */
    .challenge-section .section-title {
        margin-bottom: 30px;
    }

    /* 부제목 폰트 크기 조절 */
    .challenge-section .section-title p {
        font-size: 0.9rem;
    }

    /* 제목 폰트 크기 조절 */
    .challenge-section .section-title h2 {
        font-size: 1.5rem; /* 데스크톱 2.2rem에서 줄임 */
    }
	
	.challenge-section .section-title p {
    font-size: 1.5rem;}
	
	.feature-columns {
        padding: 60px 20px; /* 모바일에서 섹션 상하좌우 여백 조절 */
    }

    /* 1. 컬럼들을 세로로 쌓이도록 변경 */
    .columns-wrapper {
        flex-direction: column; /* 가로(row) -> 세로(column) */
        align-items: center; /* 컬럼들을 가운데 정렬 */
        gap: 40px; /* 컬럼 사이의 세로 간격 */
    }

    /* 2. 각 컬럼의 최대 너비를 설정하여 너무 넓어지지 않게 함 */
    .feature-column {
        max-width: 500px;
        width: 100%; /* 화면 너비에 맞게 조절 */
    }

    /* 3. 세로선 제거 */
    .feature-column:not(:first-child)::before {
        display: none; /* 세로선 숨김 */
    }

    /* 4. 컬럼 내부 여백 조절 (선택사항) */
    .feature-column {
        padding: 0 15px;
    }

    /* 5. 모바일에서 제목 폰트 크기 조절 (선택사항) */
    .feature-column h3 {
        font-size: 1.5rem;
    }

    /* 6. 모바일에서 본문 폰트 크기 조절 (선택사항) */
    .feature-column p {
        font-size: 0.95rem;
    }
	.challenge-icon img {
    height: auto;
        width: auto;
        max-height: 100px;
}

.challenge-column {
    padding: 40px 20px;}
	
	.challenge-column p {
    font-size: 0.9rem;}
	
	.challenge-column h4 {
    font-size: 1.3rem;}
	
	
	.sase-intro-section {
        padding: 20px 20px; /* 모바일에서 섹션 상하좌우 여백 조절 */
    }

    .sase-intro-subtitle {
        font-size: 0.9rem; /* 부제목 폰트 크기 조절 */
    }

    .sase-intro-title {
        font-size: 1.8rem; /* 제목 폰트 크기 조절 */
    }

    .sase-intro-paragraph {
        font-size: 0.95rem; /* 본문 폰트 크기 조절 */
    }
	
	.prisma-accordion {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 20px;
}

.ngfw-hero {
        padding: 60px 20px; /* 모바일에서 섹션 상하좌우 여백 조절 */
		    background-image: none;
			background-color: #fbc308;
        height: auto;
    }

    /* 1. 컬럼들을 세로로 쌓이도록 변경 */
    .ngfw-wrapper {
        flex-direction: column; /* 가로(row) -> 세로(column) */
        text-align: center; /* 내부 요소들을 가운데 정렬 */
        gap: 30px; /* 컬럼 사이의 세로 간격 */
    }

    /* 2. 이미지 컬럼의 최소 높이 제거 (자동 조절되도록) */
    .ngfw-image-column {
        min-height: auto;
        margin-bottom: 20px; /* 이미지와 텍스트 사이 간격 */
    }

    /* 3. 모바일에서 제목 폰트 크기 조절 */
    .ngfw-text-column h2 {
        font-size: 2rem;
    }


.ngfw-intro {
        padding: 60px 20px; /* 모바일에서 섹션 상하좌우 여백 조절 */
    }

    .ngfw-intro h2 {
        font-size: 1.8rem; /* 모바일에서 제목 폰트 크기 조절 */
    }

    .ngfw-intro p {
        font-size: 0.95rem; /* 모바일에서 본문 폰트 크기 조절 */
    }



.ngfw-series {
        padding: 60px 20px; /* 모바일에서 섹션 상하좌우 여백 조절 */
    }

    /* 1. 컬럼들을 세로로 쌓이도록 변경 */
    .ngfw-series .series-wrapper {
        flex-direction: column; /* 가로(row) -> 세로(column) */
        align-items: center; /* 컬럼들을 가운데 정렬 */
        gap: 50px; /* 컬럼 사이의 세로 간격 증가 */
    }

    /* 2. 각 컬럼의 최대 너비를 설정하여 너무 넓어지지 않게 함 */
    .ngfw-series .series-column {
        max-width: 500px; /* 모바일에서 컬럼 최대 너비 제한 */
        width: 100%; /* 화면 너비에 맞게 조절 */
    }

    /* 3. 모바일에서 이미지 높이 조절 (선택사항) */
    .ngfw-series .series-image-3 img {
        max-height: 180px; /* 모바일에서 이미지 높이를 약간 줄임 */
    }

    /* 4. 모바일에서 제목 폰트 크기 조절 (선택사항) */
    .ngfw-series .series-column h3 {
        font-size: 1.3rem;height: 50px;
    }

.ngfw-image-column {
display:none;
}
    /* 5. 모바일에서 본문 폰트 크기 조절 (선택사항) */
    .ngfw-series .series-column p {
        font-size: 0.95rem;
    }
.series-image-3 {
    margin-bottom: 0px;
    text-align: center;
    height: auto;}

}

@media (max-width: 600px) {

.main-header .logo img {
    height: 14px;
}

.logo-white {
    gap: 10px;}
	
	

	
.page-banner.solution-banner {
    height: auto;
}

	.page-banner.solution-banner h1 {
    font-size: 1.9rem;
    font-weight: 600;
    width: 100%;
    margin: 30px auto 30px;
    padding: 20px;
}


.solution-content {
        padding: 60px 20px; /* 모바일에서 섹션의 상하좌우 여백 줄이기 */
    }

    .solution-text h2 {
        font-size: 1.7rem; /* 모바일에서 제목 폰트 크기 조절 */
    }

    .solution-text p {
        font-size: 1rem; /* 모바일에서 본문 폰트 크기 조절 */
    }

}