/* 기본 스타일 설정 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
    /* 기본 브랜드 색상 - PM 인터내셔널 공식 색상 */
    --pm-red: #e6002d;
    --pm-navy: #1d3d79;
    
    /* 주색상 계열 */
    --primary-color: var(--pm-red);
    --primary-color-rgb: 230, 0, 45; /* Added RGB values for primary color */
    --primary-dark: #c10021;
    --primary-light: #ff3355;
    
    /* 보조색상 계열 */
    --secondary-color: var(--pm-navy);
    --secondary-dark: #152d5a;
    --secondary-light: #2d5299;
    
    /* 액센트 색상 */
    --accent-color: #ffce54;
    
    /* 중립 색상 - 가독성을 위해 조정 */
    --text-color: #222222;
    --text-light: #444444;  /* 연한 색상을 더 진하게 조정 */
    --bg-color: #ffffff;
    --light-bg: #f9f9fa;
    --dark-bg: #212529;
    --border-color: #e0e0e0;
    
    /* 기타 디자인 변수 */
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    --white: #ffffff;
    --black: #000000;
    --max-width: 1200px;
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* 폰트 사이즈 - 브랜드 일관성 위해 정의 */
    --font-xxs: 0.75rem;    /* 12px */
    --font-xs: 0.875rem;    /* 14px */
    --font-sm: 1rem;        /* 16px - 기본 */
    --font-md: 1.125rem;    /* 18px */
    --font-lg: 1.25rem;     /* 20px */
    --font-xl: 1.5rem;      /* 24px */
    --font-xxl: 1.75rem;    /* 28px */
    --font-xxxl: 2rem;      /* 32px */
    --font-huge: 2.5rem;    /* 40px */
}

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

body {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    line-height: 1.3;
    font-weight: bold;
}

p {
    margin: 0 0 15px;
}

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

/* 섹션 공통 스타일 개선 */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.title-line {
    height: 3px;
    width: 80px;
    background-color: #FFD700;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 헤더 영역 정렬 개선 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

nav ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #FFD700;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-toggle span {
    height: 3px;
    width: 100%;
    background-color: #333;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 버튼 스타일 통일 */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn span {
    margin-right: 10px;
}

.btn.btn-primary,
.primary-btn {
    background-color: #FFD700;
    color: #333;
}

.btn.btn-primary:hover,
.primary-btn:hover {
    background-color: #333;
    color: #FFD700;
}

.btn.outline-btn,
.outline-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn.outline-btn:hover,
.outline-btn:hover {
    background-color: #fff;
    color: #333;
}

.secondary-btn {
    background-color: #333;
    color: #FFD700;
}

.secondary-btn:hover {
    background-color: #555;
}

.btn i {
    margin-right: 8px;
}

/* 센터 소개 섹션 레이아웃 개선 */
.center-intro {
    background-color: #fffdf5;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-content {
    padding-right: 20px;
}

.intro-content .lead {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.intro-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.intro-quote {
    background-color: #f8f8f8;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    position: relative;
}

.intro-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-right: 10px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-feature i {
    color: #FFD700;
    font-size: 18px;
}

.intro-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

/* 센터 정보 섹션 그리드 수정 */
.center-info-section {
    background-color: #fff;
}

.center-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.center-info-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card-icon i {
    font-size: 28px;
    color: #333;
}

.center-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.center-info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 이미지 갤러리 레이아웃 개선 */
.center-info-image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 60px;
}

.gallery-main {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.gallery-thumb {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

/* CTA 섹션 개선 */
.center-info-cta {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-contact-info {
    flex: 1;
    min-width: 300px;
}

.cta-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.cta-contact-info i {
    color: #FFD700;
}

/* 센터 특징 카드 수정 */
.center-features {
    background-color: #f9f9f9;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card-icon i {
    font-size: 28px;
    color: #333;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-card-footer {
    margin-top: auto;
}

.feature-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-link:hover {
    text-decoration: underline;
}

/* 하이라이트 영역 개선 */
.features-highlight {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.highlight-logo {
    max-width: 100%;
    height: auto;
}

.highlight-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.highlight-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 제품 갤러리 섹션 정렬 */
.product-gallery {
    background-color: #fff;
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.product-cta {
    text-align: center;
}

/* 비전 스토리 섹션 개선 */
.vision-story {
    background-color: #f9f9f9;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.vision-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-text {
    padding-left: 20px;
}

.vision-quote {
    background-color: #fff;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 30px;
    font-style: italic;
    color: #666;
    position: relative;
}

.vision-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-right: 10px;
}

.vision-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.timeline-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-year {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

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

/* 고객 후기 섹션 정렬 */
.testimonials-section {
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 17px;
    margin-bottom: 5px;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

.testimonial-cta {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
}

.testimonial-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* 방문 예약 섹션 레이아웃 개선 */
.visit-booking {
    background-color: #f9f9f9;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.booking-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.booking-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: #FFD700;
    margin-top: 3px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.booking-buttons {
    display: flex;
    gap: 15px;
}

.booking-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ 섹션 정렬 */
.faq-section {
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 18px;
    color: #FFD700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* 푸터 정렬 개선 */
footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #FFD700;
    color: #333;
}

.footer-links h3, .footer-contact h3, .footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FFD700;
}

.footer-contact i {
    color: #FFD700;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: #FFD700;
    color: #333;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e6c200;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #999;
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #FFD700;
}

/* 스크롤 애니메이션 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* 스크롤 업 버튼 */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #333;
    color: #FFD700;
}

/* 반응형 추가 조정 */
@media (max-width: 1200px) {
    .intro-content-wrapper,
    .vision-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-content {
        padding-right: 0;
    }
    
    .features-cards,
    .center-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .story-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    .banner-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .banner-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .banner-cta a {
        width: 100%;
        text-align: center;
    }
    
    .features-cards,
    .center-info-grid,
    .product-slider,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-content {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }
    
    .highlight-logo {
        max-width: 200px;
        margin: 0 auto 20px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .center-info-cta {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .story-timeline {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .booking-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* 타이포그래피 */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-weight: 700; /* 700으로 변경하여 더 강조 */
    letter-spacing: -0.02em;
    color: var(--text-color);
}

h1 {
    font-size: var(--font-huge);
    letter-spacing: -0.03em;
}

h2 {
    font-size: var(--font-xxxl);
}

h3 {
    font-size: var(--font-xxl);
}

h4 {
    font-size: var(--font-xl);
}

h5 {
    font-size: var(--font-lg);
}

h6 {
    font-size: var(--font-md);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-sm);
    color: var(--text-color);
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-title {
    color: #333;
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    text-align: center;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFD700);
    margin: 20px 0 30px;
    border-radius: 2px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: var(--font-md);
    line-height: 1.6;
}

/* 버튼 스타일 개선 - 가독성 및 일관성 */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-sm);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 0, 45, 0.25);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 61, 121, 0.25);
}

.secondary-btn:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
}

.outline-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 0, 45, 0.25);
    font-weight: 600;
}

.btn.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 0, 45, 0.3);
}

.btn.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 61, 121, 0.25);
    font-weight: 600;
}

.btn.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(29, 61, 121, 0.3);
}

/* 헤더 스타일 개선 */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(230, 0, 45, 0.1);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    transition: var(--transition);
    letter-spacing: -0.02em;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-md);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover:after, nav a.active:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-toggle span {
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* 히어로 배너 */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.05) 0%, 
        #ffffff 40%, 
        rgba(var(--pm-navy), 0.05) 70%, 
        rgba(var(--pm-red), 0.03) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 30px -5px rgba(230, 0, 45, 0.03);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(230, 0, 45, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.hero-banner::after {
    display: none;
}

.hero-banner .container {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-banner p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

/* 홍보 문구 영역 */
.promo-section {
    background-color: var(--light-bg);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.promo-section h2 {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.75rem;
}

/* 인기 제품 영역 */
.featured-products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.product-grid.detailed {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(230, 0, 45, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--spacing-md) var(--spacing-lg);
}

.product-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-title i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-title strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.product-desc {
    display: block;
    color: var(--text-color);
    font-size: 15px;
    padding-left: 38px;
    line-height: 1.4;
    margin-top: 2px;
}

.product-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.product-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.product-benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.product-benefits-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-benefits-list li i {
    color: white;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.product-grid.detailed .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-grid.detailed .product-card .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-card.expanded {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-card.expanded .product-image {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card.expanded .product-image img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.product-card.expanded .product-image img:hover {
    transform: scale(1.05);
}

.product-card.expanded .product-content {
    flex: 1;
    padding: var(--spacing-lg);
}

.product-card.expanded h3 {
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card.expanded .product-tagline {
    margin-bottom: var(--spacing-md);
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(230, 0, 45, 0.2);
}

.product-card.expanded .product-description p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    line-height: 1.6;
    font-size: var(--font-sm);
}

.autoship-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
}

.autoship-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.autoship-top-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.autoship-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.autoship-lead {
    font-size: var(--font-lg);
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.7;
    text-align: left;
}

.autoship-cta {
    width: 100%;
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(29, 61, 121, 0.15);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autoship-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 61, 121, 0.2);
}

.autoship-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.autoship-feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.autoship-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.autoship-feature .feature-icon {
    background-color: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
}

.autoship-feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature h3 {
    font-size: var(--font-lg);
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.autoship-feature h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.autoship-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.autoship-feature p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 이미지 관련 CSS 주석 처리
.autoship-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.autoship-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
*/

.autoship-cta h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.autoship-cta h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.autoship-instructions {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.autoship-instructions li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.autoship-instructions li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.autoship-cta .btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

.story-section {
    padding: 100px 0;
    background-color: #fffdf5; /* 노란색 계열 배경색으로 변경 */
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjRkZENzAwIiBvcGFjaXR5PSIwLjA1Ij48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.story-content {
    flex: 0 0 45%;
    max-width: 45%;
    animation: fadeInLeft 1s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: #FFD700; /* 노란색으로 변경 */
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: space-between; /* 균등한 간격으로 배치 */
}

.feature-card {
    flex: 1 1 30%;
    min-width: 100px;
    height: 120px; /* 고정 높이 설정 */
    width: 200px; /* 고정 너비 설정 */
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto; /* 중앙 정렬을 위한 마진 설정 */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px; /* 아이콘 크기 통일 */
    height: 60px; /* 아이콘 크기 통일 */
    border-radius: 50%;
    background-color: #1a3569; /* 파란색 배경으로 변경 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon i {
    font-size: 22px;
    color: #ffffff; /* 아이콘 색상을 흰색으로 변경 */
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.center-quote {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.center-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.center-quote p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.story-image-container {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-container:hover .story-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.image-decoration {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 8px solid #FFD700;
    border-radius: 15px;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.3;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FFD700;
    color: #333;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.btn.btn-primary:hover {
    background-color: #333;
    color: #FFD700;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.btn.btn-primary i {
    transition: transform 0.3s ease;
    color: #333;
}

.btn.btn-primary:hover i {
    transform: translateX(5px);
    color: #FFD700;
}

.product-features-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.center-info-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(to right, #ffffff 0%, var(--light-bg) 100%);
}

.center-info-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.center-info-content h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-xxxl);
    font-weight: 700;
}

.center-info-content p {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: var(--font-md);
    font-weight: 500;
}

.center-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.center-info-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: var(--font-sm);
}

.center-info-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.center-info-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.center-info-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

footer {
    background: linear-gradient(to bottom, #2a2a2a, var(--pm-navy));
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

footer .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact {
    max-width: 300px;
}

.footer-contact h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-contact p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer .container {
        padding: 0 20px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo, .footer-contact {
        max-width: 100%;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

.footer-logo p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.footer-links, .footer-contact, .footer-social {
    margin-bottom: var(--spacing-lg);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: var(--font-md);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
    font-weight: 600;
}

.footer-links h3:after, .footer-contact h3:after, .footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-sm);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--font-sm);
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-xs);
    margin: 0;
}

.brand-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    color: var(--primary-color);
    line-height: 1.5;
    font-style: italic;
}

.eco-tag, .eco-friendly-tag {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin: var(--spacing-md) 0;
    font-size: var(--font-md);
}

/* 배너 그리드 스타일 */
.banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.banner-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-highlights.right-highlights {
    margin-top: 20px;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.product-images-set {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images-set .product-image {
    position: absolute;
    max-width: 300px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    animation: none;
}

.product-images-set .product-image-top {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
    z-index: 3;
    max-width: 250px;
}

.product-images-set .product-image-left {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
    z-index: 1;
}

.product-images-set .product-image-right {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
    z-index: 2;
}

.product-images-set .product-image:hover {
    transform: none;
}

.product-images-set .product-image-top:hover {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
}

.product-images-set .product-image-left:hover {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
}

.product-images-set .product-image-right:hover {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
}

.banner-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Added explicit left alignment */
    padding-left: 50px; /* Added left padding */
}

.banner-text h1 {
    font-size: var(--font-huge);
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.banner-description {
    font-size: var(--font-md);
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    font-weight: 400;
    word-spacing: 1px;
}

.banner-description strong {
    font-weight: 700;
    color: var(--text-color);
}

.banner-note {
    font-size: var(--font-sm);
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.product-highlights {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    max-width: 700px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 5px 10px;
    border-right: 1px dashed rgba(0, 0, 0, 0.1);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-icon {
    color: var(--primary-color);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: white;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: var(--text-color);
    line-height: 1.4;
    width: 100%;
}

.highlight-text strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.banner-slogan {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.banner-text .btn {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

.highlight-primary {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.text-accent {
    color: var(--secondary-color);
    font-weight: 600;
}

.highlight-stat {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-keyword {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.highlight-secondary {
    display: inline-block;
    background-color: rgba(29, 61, 121, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.global-presence-strip {
    background: linear-gradient(to right, var(--pm-red), var(--pm-navy));
    padding: 20px 0;
    color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.global-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.stat-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.stat-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.summary-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
    color: white;
    font-size: 24px;
}

.summary-item:nth-child(2) .summary-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.summary-item:nth-child(3) .summary-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

.product-summary {
    padding: 40px 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.summary-item {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.summary-item h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--text-color);
}

.summary-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

.product-text-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.product-text-summary.certification-icons {
    margin: 25px 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-text-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.certification-icons .product-text-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--light-gray);
}

.certification-icons .product-text-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-text-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.certification-icons .product-text-item i {
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.product-text-info {
    display: flex;
    flex-direction: column;
}

.certification-icons .product-text-info strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.certification-icons .product-text-info span {
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--font-sm);
}

.cert-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    object-fit: contain;
}

.banner-feature-item .feature-icon {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.banner-feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.banner-feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

@media (max-width: 768px) {
    .product-images-set {
        height: 500px;
        align-items: center;
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    .banner-right {
        overflow: visible;
        margin-top: 50px;
    }

    /* 인기 제품 카드 모바일 스타일 */
    .product-grid.detailed .product-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-card.expanded .product-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        margin: 0 auto;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 280px;
        margin: 0 auto;
        object-fit: contain;
    }

    .product-highlights {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .highlight-item {
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        padding: 10px 5px;
    }
    
    .highlight-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .product-images-set {
        height: 500px;
        transform: scale(0.9);
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    /* 더 작은 화면에서 인기 제품 이미지 조정 */
    .product-card.expanded .product-image {
        padding: 10px;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-features {
        gap: 12px;
        padding: 20px;
    }
    
    .banner-feature-item {
        gap: 10px;
    }
    
    .banner-feature-item .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .banner-feature-item p {
        font-size: 15px;
    }
    
    .product-text-summary {
        padding: 12px;
        flex-wrap: wrap;
    }
    
    .product-text-item {
        padding: 8px 5px;
        flex-basis: 33%;
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }
    
    .product-text-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .banner-grid {
        gap: 20px;
    }
    
    .banner-right {
        margin-top: 20px;
    }
    
    .cert-logo {
        width: 80px;
    }
    
    .highlight-keyword, .highlight-secondary {
        display: inline;
        padding: 1px 3px;
    }
}

.cert-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.cert-line-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cert-line-item i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cert-text {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.cert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    object-fit: contain;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.autoship-guide-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
}

.guide-item {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    min-width: 200px;
}

.guide-text strong {
    font-size: var(--font-md);
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.guide-text span {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.4;
}

/* 모바일 반응형 적용 */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
}

@media (max-width: 576px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
}

/* 오토십 가입 절차 섹션 */
.signup-process-section {
    width: 100%;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-title {
    text-align: center;
    color: var(--text-color);
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.process-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.signup-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--spacing-lg) 0;
    position: relative;
    flex-wrap: nowrap;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-item:nth-child(1) {
    border-top-color: #ff416c;
    background-color: rgba(255, 65, 108, 0.03);
}

.step-item:nth-child(3) {
    border-top-color: #4364f7;
    background-color: rgba(67, 100, 247, 0.03);
}

.step-item:nth-child(5) {
    border-top-color: #ff5858;
    background-color: rgba(255, 88, 88, 0.03);
}

.step-item:nth-child(7) {
    border-top-color: #38ef7d;
    background-color: rgba(56, 239, 125, 0.03);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 15px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    border: 3px solid transparent;
}

.step-item:nth-child(1) .step-icon {
    color: #ff416c;
    border-color: rgba(255, 75, 43, 0.3);
}

.step-item:nth-child(3) .step-icon {
    color: #4364f7;
    border-color: rgba(30, 144, 255, 0.3);
}

.step-item:nth-child(5) .step-icon {
    color: #ff5858;
    border-color: rgba(240, 152, 25, 0.3);
}

.step-item:nth-child(7) .step-icon {
    color: #38ef7d;
    border-color: rgba(17, 153, 142, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}

/* 각 단계별 다른 색상 적용 */
.step-item:nth-child(1) .step-number {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

.step-item:nth-child(3) .step-number {
    background: linear-gradient(135deg, #1e90ff, #4364f7);
}

.step-item:nth-child(5) .step-number {
    background: linear-gradient(135deg, #f09819, #ff5858);
}

.step-item:nth-child(7) .step-number {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.step-item h4 {
    margin: 10px 0;
    color: var(--text-color);
    font-size: var(--font-md);
    font-weight: 600;
}

.step-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.5;
    margin-bottom: 0;
}

.step-connector {
    height: 2px;
    flex-grow: 0.5;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: relative;
    z-index: 0;
    max-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector:after {
    content: '';
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--secondary-color);
}

.process-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* 오토십 가이드 스타일 */
.guide-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.guide-icon i {
    color: white;
    font-size: 18px;
}

.guide-text {
    display: flex;
    flex-direction: column;
}

.guide-item:nth-child(1) .guide-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.guide-item:nth-child(2) .guide-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.guide-item:nth-child(3) .guide-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.guide-item:nth-child(4) .guide-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

/* 통합된 모바일 반응형 타이포그래피 */
@media (max-width: 992px) {
    .signup-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .step-item {
        width: 100%;
        max-width: 350px;
    }
    
    .step-connector {
        width: 2px;
        height: 30px;
        flex-grow: 0;
        max-width: none;
    }
    
    .step-connector:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid var(--secondary-color);
    }
}

@media (max-width: 768px) {
    /* 기본 타이포그래피 */
    h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    h2 {
        font-size: calc(var(--font-xxxl) * 0.9);
    }
    
    h3 {
        font-size: calc(var(--font-xxl) * 0.9);
    }
    
    .section-title {
        font-size: calc(var(--font-xxxl) * 0.9);
    }
    
    .section-desc {
        font-size: var(--font-sm);
    }
    
    /* 배너 및 하이라이트 */
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
    
    /* 제품, 가이드, 단계 등 텍스트 */
    .product-card p,
    .product-card.expanded .product-description p,
    .autoship-feature p,
    .step-item p,
    .guide-text span {
        font-size: var(--font-sm);
    }
    
    /* 인증 관련 텍스트 */
    .certification-icons .product-text-info span {
        font-size: var(--font-xs);
    }
}

@media (max-width: 576px) {
    body {
        font-size: var(--font-sm);
    }
    
    h1, .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    h2 {
        font-size: calc(var(--font-xxxl) * 0.8);
    }
    
    h3 {
        font-size: calc(var(--font-xxl) * 0.8);
    }
    
    .section-title {
        font-size: calc(var(--font-xxxl) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
    
    /* 작은 화면에서도 버튼 텍스트 가독성 유지 */
    .btn {
        font-size: var(--font-sm);
        padding: 0.8rem 1.5rem;
    }
    
    /* 단계별 요소 텍스트 크기 조정 */
    .step-item h4 {
        font-size: var(--font-sm);
    }
    
    .step-item p {
        font-size: var(--font-xs);
    }
}

/* 센터 페이지 스타일 개선 */
.page-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(var(--pm-red), 0.07) 0%, #ffffff 50%, rgba(var(--pm-navy), 0.07) 100%);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(230, 0, 45, 0.07) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-huge);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-banner p {
    max-width: 700px;
    margin: 0 auto var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    letter-spacing: -0.01em;
}

.center-slogan {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(var(--pm-red), 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    border-radius: 30px;
    margin-top: var(--spacing-sm);
    letter-spacing: -0.01em;
}

/* 센터 소개 섹션 개선 */
.center-intro {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.center-intro .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.intro-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.intro-content p.lead {
    font-size: var(--font-xl);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.intro-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-md);
}

.center-name-tag {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: rgba(var(--pm-navy), 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
}

.center-name {
    font-size: var(--font-xl);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.center-subtitle {
    font-size: var(--font-md);
    color: var(--text-color);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.intro-image:hover img {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* 비전 섹션 개선 */
.vision-intro {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.vision-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.vision-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.vision-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.vision-statement {
    font-size: var(--font-xl);
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    font-style: italic;
}

.vision-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.eco-friendly-statement {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(var(--pm-navy), 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: var(--font-md);
    border-radius: 30px;
    margin-top: var(--spacing-sm);
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

/* 핵심 가치 섹션 개선 */
.core-values {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.values-tagline {
    display: inline-block;
    margin: var(--spacing-md) auto var(--spacing-xl);
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(var(--pm-red), 0.1) 0%, rgba(var(--pm-navy), 0.1) 100%);
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-lg);
    border-radius: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.value-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 5px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-card:nth-child(1) {
    border-top-color: var(--primary-color);
}

.value-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.value-card:nth-child(3) {
    border-top-color: var(--accent-color);
}

.value-card:nth-child(4) {
    border-top-color: #4cd964;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 8px 15px rgba(var(--pm-red), 0.2);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    box-shadow: 0 8px 15px rgba(var(--pm-navy), 0.2);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 8px 15px rgba(255, 206, 84, 0.2);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #4cd964, #8efa7b);
    box-shadow: 0 8px 15px rgba(76, 217, 100, 0.2);
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.value-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* 센터 특징 섹션 개선 */
.center-features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* 시음회 섹션 개선 */
.center-tasting {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.05) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.05) 100%);
}

.tasting-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tasting-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.tasting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.tasting-feature {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.tasting-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tasting-feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.tasting-feature h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
}

.tasting-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.tasting-cta {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tasting-tagline {
    font-size: var(--font-lg);
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* 비전 스토리 섹션 개선 */
.vision-story {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.story-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.story-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-md);
}

/* 인포그래픽 섹션 개선 */
.vision-infographic {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.infographic-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.infographic-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    text-align: center;
}

.infographic-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.infographic-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.infographic-text {
    font-size: var(--font-md);
    color: var(--text-color);
    font-weight: 500;
}

/* 팀 섹션 개선 */
.team-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.member-photo {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: var(--spacing-md);
}

.member-info h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-lg);
    font-weight: 600;
}

.member-position {
    color: var(--primary-color);
    font-size: var(--font-sm);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.member-bio {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.social-links {
    margin-top: var(--spacing-sm);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* 애니메이션 효과 */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .center-intro .container,
    .vision-intro .container,
    .tasting-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .intro-image,
    .vision-image {
        order: -1;
    }
    
    .infographic-item {
        width: 170px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .page-banner p {
        font-size: var(--font-md);
    }
    
    .intro-content p.lead,
    .vision-statement {
        font-size: var(--font-lg);
    }
    
    .intro-content p,
    .vision-content p,
    .story-content p {
        font-size: var(--font-sm);
    }
    
    .center-name {
        font-size: var(--font-lg);
    }
    
    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .infographic-container {
        gap: var(--spacing-md);
    }
    
    .infographic-item {
        width: 140px;
        padding: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .center-slogan,
    .eco-friendly-statement,
    .values-tagline {
        font-size: var(--font-sm);
    }
    
    .infographic-container {
        flex-direction: column;
        align-items: center;
    }
    
    .infographic-item {
        width: 100%;
        max-width: 280px;
    }
}

/* 고객 후기 섹션 스타일 */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
}

.testimonial-avatar i {
    font-size: 28px;
    color: white;
}

.testimonial-user h4 {
    margin: 0;
    font-size: var(--font-md);
    color: var(--text-color);
}

.testimonial-stars {
    color: #ffce54;
    font-size: var(--font-sm);
    margin-top: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-sm);
}

.testimonial-date {
    text-align: right;
    font-size: var(--font-xs);
    color: var(--text-light);
    font-style: italic;
}

/* FAQ 섹션 스타일 */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-bg);
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f0f0f2;
}

.faq-question.active {
    background-color: var(--white);
}

.faq-question h3 {
    margin: 0;
    font-size: var(--font-md);
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: var(--spacing-md);
    margin: 0;
}

/* 가이드 비디오 섹션 스타일 */
.guide-videos {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
}

#youtube-player {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.youtube-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.video-list {
    margin-top: var(--spacing-xl);
}

.video-list h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.video-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.video-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-color-rgb), 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.video-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: var(--spacing-sm);
}

.video-info h4 {
    margin-bottom: 0.5rem;
    font-size: var(--font-md);
}

.video-info p {
    margin-bottom: 0;
    font-size: var(--font-xs);
    color: var(--text-light);
}

/* 팁 섹션 스타일 */
.tips-section {
    padding: var(--spacing-xl) 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.tip-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.tip-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.tip-card p {
    margin-bottom: 0;
    font-size: var(--font-sm);
    color: var(--text-light);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .video-list ul {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    #youtube-player iframe {
        height: 320px;
    }
    
    .youtube-controls {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .video-info h4 {
        font-size: var(--font-sm);
    }
    
    .video-info p {
        font-size: var(--font-xxs);
    }
    
    #youtube-player iframe {
        height: 240px;
    }
    
    .tip-card {
        padding: var(--spacing-md);
    }
}

/* PM 인터내셔널 소개 페이지 스타일 */
.about-intro {
    background-color: #f8fafc;
    padding: 80px 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-content h2 {
    font-size: var(--font-xxl);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-content .lead {
    font-size: var(--font-lg);
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image {
    position: relative;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: var(--font-xs);
}

.certification-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.certification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.certification-text p {
    font-size: var(--font-md);
    margin-bottom: 30px;
    line-height: 1.7;
}

.certification-logos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cert-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.certification-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-for-all-section {
    background: linear-gradient(to right, #f0f5fa, #e6f0ff);
    padding: 80px 0;
}

.product-for-all-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-for-all-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-for-all-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* 기본 스타일 설정 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
    /* 기본 브랜드 색상 - PM 인터내셔널 공식 색상 */
    --pm-red: #e6002d;
    --pm-navy: #1d3d79;
    
    /* 주색상 계열 */
    --primary-color: var(--pm-red);
    --primary-color-rgb: 230, 0, 45; /* Added RGB values for primary color */
    --primary-dark: #c10021;
    --primary-light: #ff3355;
    
    /* 보조색상 계열 */
    --secondary-color: var(--pm-navy);
    --secondary-dark: #152d5a;
    --secondary-light: #2d5299;
    
    /* 액센트 색상 */
    --accent-color: #ffce54;
    
    /* 중립 색상 - 가독성을 위해 조정 */
    --text-color: #222222;
    --text-light: #444444;  /* 연한 색상을 더 진하게 조정 */
    --bg-color: #ffffff;
    --light-bg: #f9f9fa;
    --dark-bg: #212529;
    --border-color: #e0e0e0;
    
    /* 기타 디자인 변수 */
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    --white: #ffffff;
    --black: #000000;
    --max-width: 1200px;
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* 폰트 사이즈 - 브랜드 일관성 위해 정의 */
    --font-xxs: 0.75rem;    /* 12px */
    --font-xs: 0.875rem;    /* 14px */
    --font-sm: 1rem;        /* 16px - 기본 */
    --font-md: 1.125rem;    /* 18px */
    --font-lg: 1.25rem;     /* 20px */
    --font-xl: 1.5rem;      /* 24px */
    --font-xxl: 1.75rem;    /* 28px */
    --font-xxxl: 2rem;      /* 32px */
    --font-huge: 2.5rem;    /* 40px */
}

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

body {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    line-height: 1.3;
    font-weight: bold;
}

p {
    margin: 0 0 15px;
}

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

/* 섹션 공통 스타일 개선 */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.title-line {
    height: 3px;
    width: 80px;
    background-color: #FFD700;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 헤더 영역 정렬 개선 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

nav ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #FFD700;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-toggle span {
    height: 3px;
    width: 100%;
    background-color: #333;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 버튼 스타일 통일 */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn span {
    margin-right: 10px;
}

.btn.btn-primary,
.primary-btn {
    background-color: #FFD700;
    color: #333;
}

.btn.btn-primary:hover,
.primary-btn:hover {
    background-color: #333;
    color: #FFD700;
}

.btn.outline-btn,
.outline-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn.outline-btn:hover,
.outline-btn:hover {
    background-color: #fff;
    color: #333;
}

.secondary-btn {
    background-color: #333;
    color: #FFD700;
}

.secondary-btn:hover {
    background-color: #555;
}

.btn i {
    margin-right: 8px;
}

/* 센터 소개 섹션 레이아웃 개선 */
.center-intro {
    background-color: #fffdf5;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-content {
    padding-right: 20px;
}

.intro-content .lead {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.intro-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.intro-quote {
    background-color: #f8f8f8;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    position: relative;
}

.intro-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-right: 10px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-feature i {
    color: #FFD700;
    font-size: 18px;
}

.intro-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

/* 센터 정보 섹션 그리드 수정 */
.center-info-section {
    background-color: #fff;
}

.center-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.center-info-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card-icon i {
    font-size: 28px;
    color: #333;
}

.center-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.center-info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 이미지 갤러리 레이아웃 개선 */
.center-info-image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 60px;
}

.gallery-main {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.gallery-thumb {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

/* CTA 섹션 개선 */
.center-info-cta {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-contact-info {
    flex: 1;
    min-width: 300px;
}

.cta-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.cta-contact-info i {
    color: #FFD700;
}

/* 센터 특징 카드 수정 */
.center-features {
    background-color: #f9f9f9;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card-icon i {
    font-size: 28px;
    color: #333;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-card-footer {
    margin-top: auto;
}

.feature-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-link:hover {
    text-decoration: underline;
}

/* 하이라이트 영역 개선 */
.features-highlight {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.highlight-logo {
    max-width: 100%;
    height: auto;
}

.highlight-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.highlight-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 제품 갤러리 섹션 정렬 */
.product-gallery {
    background-color: #fff;
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.product-cta {
    text-align: center;
}

/* 비전 스토리 섹션 개선 */
.vision-story {
    background-color: #f9f9f9;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.vision-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-text {
    padding-left: 20px;
}

.vision-quote {
    background-color: #fff;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 30px;
    font-style: italic;
    color: #666;
    position: relative;
}

.vision-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-right: 10px;
}

.vision-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.timeline-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-year {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

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

/* 고객 후기 섹션 정렬 */
.testimonials-section {
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 17px;
    margin-bottom: 5px;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

.testimonial-cta {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
}

.testimonial-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* 방문 예약 섹션 레이아웃 개선 */
.visit-booking {
    background-color: #f9f9f9;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.booking-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.booking-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: #FFD700;
    margin-top: 3px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.booking-buttons {
    display: flex;
    gap: 15px;
}

.booking-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ 섹션 정렬 */
.faq-section {
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 18px;
    color: #FFD700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* 푸터 정렬 개선 */
footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact {
    max-width: 300px;
}

.footer-contact h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-contact p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer .container {
        padding: 0 20px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo, .footer-contact {
        max-width: 100%;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* 스크롤 애니메이션 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* 스크롤 업 버튼 */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #333;
    color: #FFD700;
}

/* 반응형 추가 조정 */
@media (max-width: 1200px) {
    .intro-content-wrapper,
    .vision-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-content {
        padding-right: 0;
    }
    
    .features-cards,
    .center-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .story-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    .banner-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .banner-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .banner-cta a {
        width: 100%;
        text-align: center;
    }
    
    .features-cards,
    .center-info-grid,
    .product-slider,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-content {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }
    
    .highlight-logo {
        max-width: 200px;
        margin: 0 auto 20px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .center-info-cta {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .story-timeline {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .booking-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* 타이포그래피 */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-weight: 700; /* 700으로 변경하여 더 강조 */
    letter-spacing: -0.02em;
    color: var(--text-color);
}

h1 {
    font-size: var(--font-huge);
    letter-spacing: -0.03em;
}

h2 {
    font-size: var(--font-xxxl);
}

h3 {
    font-size: var(--font-xxl);
}

h4 {
    font-size: var(--font-xl);
}

h5 {
    font-size: var(--font-lg);
}

h6 {
    font-size: var(--font-md);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-sm);
    color: var(--text-color);
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-title {
    color: #333;
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    text-align: center;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFD700);
    margin: 20px 0 30px;
    border-radius: 2px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: var(--font-md);
    line-height: 1.6;
}

/* 버튼 스타일 개선 - 가독성 및 일관성 */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-sm);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 0, 45, 0.25);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 61, 121, 0.25);
}

.secondary-btn:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
}

.outline-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 0, 45, 0.25);
    font-weight: 600;
}

.btn.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 0, 45, 0.3);
}

.btn.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 61, 121, 0.25);
    font-weight: 600;
}

.btn.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(29, 61, 121, 0.3);
}

/* 헤더 스타일 개선 */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(230, 0, 45, 0.1);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    transition: var(--transition);
    letter-spacing: -0.02em;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-md);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover:after, nav a.active:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-toggle span {
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* 히어로 배너 */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.05) 0%, 
        #ffffff 40%, 
        rgba(var(--pm-navy), 0.05) 70%, 
        rgba(var(--pm-red), 0.03) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 30px -5px rgba(230, 0, 45, 0.03);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(230, 0, 45, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.hero-banner::after {
    display: none;
}

.hero-banner .container {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-banner p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

/* 홍보 문구 영역 */
.promo-section {
    background-color: var(--light-bg);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.promo-section h2 {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.75rem;
}

/* 인기 제품 영역 */
.featured-products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.product-grid.detailed {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(230, 0, 45, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--spacing-md) var(--spacing-lg);
}

.product-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-title i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-title strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.product-desc {
    display: block;
    color: var(--text-color);
    font-size: 15px;
    padding-left: 38px;
    line-height: 1.4;
    margin-top: 2px;
}

.product-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.product-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.product-benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.product-benefits-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-benefits-list li i {
    color: white;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.product-grid.detailed .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-grid.detailed .product-card .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-card.expanded {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-card.expanded .product-image {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card.expanded .product-image img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.product-card.expanded .product-image img:hover {
    transform: scale(1.05);
}

.product-card.expanded .product-content {
    flex: 1;
    padding: var(--spacing-lg);
}

.product-card.expanded h3 {
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card.expanded .product-tagline {
    margin-bottom: var(--spacing-md);
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(230, 0, 45, 0.2);
}

.product-card.expanded .product-description p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    line-height: 1.6;
    font-size: var(--font-sm);
}

.autoship-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
}

.autoship-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.autoship-top-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.autoship-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.autoship-lead {
    font-size: var(--font-lg);
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.7;
    text-align: left;
}

.autoship-cta {
    width: 100%;
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(29, 61, 121, 0.15);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autoship-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 61, 121, 0.2);
}

.autoship-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.autoship-feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.autoship-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.autoship-feature .feature-icon {
    background-color: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
}

.autoship-feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature h3 {
    font-size: var(--font-lg);
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.autoship-feature h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.autoship-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.autoship-feature p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 이미지 관련 CSS 주석 처리
.autoship-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.autoship-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
*/

.autoship-cta h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.autoship-cta h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.autoship-instructions {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.autoship-instructions li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.autoship-instructions li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.autoship-cta .btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

.story-section {
    padding: 100px 0;
    background-color: #fffdf5; /* 노란색 계열 배경색으로 변경 */
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjRkZENzAwIiBvcGFjaXR5PSIwLjA1Ij48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.story-content {
    flex: 0 0 45%;
    max-width: 45%;
    animation: fadeInLeft 1s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: #FFD700; /* 노란색으로 변경 */
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: space-between; /* 균등한 간격으로 배치 */
}

.feature-card {
    flex: 1 1 30%;
    min-width: 100px;
    height: 120px; /* 고정 높이 설정 */
    width: 200px; /* 고정 너비 설정 */
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto; /* 중앙 정렬을 위한 마진 설정 */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px; /* 아이콘 크기 통일 */
    height: 60px; /* 아이콘 크기 통일 */
    border-radius: 50%;
    background-color: #1a3569; /* 파란색 배경으로 변경 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon i {
    font-size: 22px;
    color: #ffffff; /* 아이콘 색상을 흰색으로 변경 */
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.center-quote {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.center-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.center-quote p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.story-image-container {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-container:hover .story-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.image-decoration {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 8px solid #FFD700;
    border-radius: 15px;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.3;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FFD700;
    color: #333;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.btn.btn-primary:hover {
    background-color: #333;
    color: #FFD700;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.btn.btn-primary i {
    transition: transform 0.3s ease;
    color: #333;
}

.btn.btn-primary:hover i {
    transform: translateX(5px);
    color: #FFD700;
}

.product-features-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.center-info-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(to right, #ffffff 0%, var(--light-bg) 100%);
}

.center-info-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.center-info-content h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-xxxl);
    font-weight: 700;
}

.center-info-content p {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: var(--font-md);
    font-weight: 500;
}

.center-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.center-info-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: var(--font-sm);
}

.center-info-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.center-info-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.center-info-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

footer {
    background: linear-gradient(to bottom, #2a2a2a, var(--pm-navy));
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    max-height: 120px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-logo p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.footer-links, .footer-contact, .footer-social {
    margin-bottom: var(--spacing-lg);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: var(--font-md);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
    font-weight: 600;
}

.footer-links h3:after, .footer-contact h3:after, .footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-sm);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--font-sm);
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-xs);
    margin: 0;
}

.brand-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    color: var(--primary-color);
    line-height: 1.5;
    font-style: italic;
}

.eco-tag, .eco-friendly-tag {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin: var(--spacing-md) 0;
    font-size: var(--font-md);
}

/* 배너 그리드 스타일 */
.banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.banner-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-highlights.right-highlights {
    margin-top: 20px;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.product-images-set {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images-set .product-image {
    position: absolute;
    max-width: 300px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    animation: none;
}

.product-images-set .product-image-top {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
    z-index: 3;
    max-width: 250px;
}

.product-images-set .product-image-left {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
    z-index: 1;
}

.product-images-set .product-image-right {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
    z-index: 2;
}

.product-images-set .product-image:hover {
    transform: none;
}

.product-images-set .product-image-top:hover {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
}

.product-images-set .product-image-left:hover {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
}

.product-images-set .product-image-right:hover {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
}

.banner-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Added explicit left alignment */
    padding-left: 50px; /* Added left padding */
}

.banner-text h1 {
    font-size: var(--font-huge);
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.banner-description {
    font-size: var(--font-md);
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    font-weight: 400;
    word-spacing: 1px;
}

.banner-description strong {
    font-weight: 700;
    color: var(--text-color);
}

.banner-note {
    font-size: var(--font-sm);
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.product-highlights {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    max-width: 700px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 5px 10px;
    border-right: 1px dashed rgba(0, 0, 0, 0.1);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-icon {
    color: var(--primary-color);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: white;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: var(--text-color);
    line-height: 1.4;
    width: 100%;
}

.highlight-text strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.banner-slogan {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.banner-text .btn {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

.highlight-primary {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.text-accent {
    color: var(--secondary-color);
    font-weight: 600;
}

.highlight-stat {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-keyword {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.highlight-secondary {
    display: inline-block;
    background-color: rgba(29, 61, 121, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.global-presence-strip {
    background: linear-gradient(to right, var(--pm-red), var(--pm-navy));
    padding: 20px 0;
    color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.global-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.stat-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.stat-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.summary-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
    color: white;
    font-size: 24px;
}

.summary-item:nth-child(2) .summary-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.summary-item:nth-child(3) .summary-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

.product-summary {
    padding: 40px 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.summary-item {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.summary-item h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--text-color);
}

.summary-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

.product-text-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.product-text-summary.certification-icons {
    margin: 25px 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-text-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.certification-icons .product-text-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--light-gray);
}

.certification-icons .product-text-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-text-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.certification-icons .product-text-item i {
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.product-text-info {
    display: flex;
    flex-direction: column;
}

.certification-icons .product-text-info strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.certification-icons .product-text-info span {
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--font-sm);
}

.cert-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    object-fit: contain;
}

.banner-feature-item .feature-icon {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.banner-feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.banner-feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

@media (max-width: 768px) {
    .product-images-set {
        height: 500px;
        align-items: center;
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    .banner-right {
        overflow: visible;
        margin-top: 50px;
    }

    /* 인기 제품 카드 모바일 스타일 */
    .product-grid.detailed .product-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-card.expanded .product-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        margin: 0 auto;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 280px;
        margin: 0 auto;
        object-fit: contain;
    }

    .product-highlights {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .highlight-item {
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        padding: 10px 5px;
    }
    
    .highlight-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .product-images-set {
        height: 500px;
        transform: scale(0.9);
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    /* 더 작은 화면에서 인기 제품 이미지 조정 */
    .product-card.expanded .product-image {
        padding: 10px;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-features {
        gap: 12px;
        padding: 20px;
    }
    
    .banner-feature-item {
        gap: 10px;
    }
    
    .banner-feature-item .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .banner-feature-item p {
        font-size: 15px;
    }
    
    .product-text-summary {
        padding: 12px;
        flex-wrap: wrap;
    }
    
    .product-text-item {
        padding: 8px 5px;
        flex-basis: 33%;
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }
    
    .product-text-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .banner-grid {
        gap: 20px;
    }
    
    .banner-right {
        margin-top: 20px;
    }
    
    .cert-logo {
        width: 80px;
    }
    
    .highlight-keyword, .highlight-secondary {
        display: inline;
        padding: 1px 3px;
    }
}

.cert-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.cert-line-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cert-line-item i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cert-text {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.cert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    object-fit: contain;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.autoship-guide-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
}

.guide-item {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    min-width: 200px;
}

.guide-text strong {
    font-size: var(--font-md);
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.guide-text span {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.4;
}

/* 모바일 반응형 적용 */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
}

@media (max-width: 576px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
}

/* 오토십 가입 절차 섹션 */
.signup-process-section {
    width: 100%;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-title {
    text-align: center;
    color: var(--text-color);
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.process-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.signup-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--spacing-lg) 0;
    position: relative;
    flex-wrap: nowrap;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-item:nth-child(1) {
    border-top-color: #ff416c;
    background-color: rgba(255, 65, 108, 0.03);
}

.step-item:nth-child(3) {
    border-top-color: #4364f7;
    background-color: rgba(67, 100, 247, 0.03);
}

.step-item:nth-child(5) {
    border-top-color: #ff5858;
    background-color: rgba(255, 88, 88, 0.03);
}

.step-item:nth-child(7) {
    border-top-color: #38ef7d;
    background-color: rgba(56, 239, 125, 0.03);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 15px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    border: 3px solid transparent;
}

.step-item:nth-child(1) .step-icon {
    color: #ff416c;
    border-color: rgba(255, 75, 43, 0.3);
}

.step-item:nth-child(3) .step-icon {
    color: #4364f7;
    border-color: rgba(30, 144, 255, 0.3);
}

.step-item:nth-child(5) .step-icon {
    color: #ff5858;
    border-color: rgba(240, 152, 25, 0.3);
}

.step-item:nth-child(7) .step-icon {
    color: #38ef7d;
    border-color: rgba(17, 153, 142, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}

/* 각 단계별 다른 색상 적용 */
.step-item:nth-child(1) .step-number {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

.step-item:nth-child(3) .step-number {
    background: linear-gradient(135deg, #1e90ff, #4364f7);
}

.step-item:nth-child(5) .step-number {
    background: linear-gradient(135deg, #f09819, #ff5858);
}

.step-item:nth-child(7) .step-number {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.step-item h4 {
    margin: 10px 0;
    color: var(--text-color);
    font-size: var(--font-md);
    font-weight: 600;
}

.step-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.5;
    margin-bottom: 0;
}

.step-connector {
    height: 2px;
    flex-grow: 0.5;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: relative;
    z-index: 0;
    max-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector:after {
    content: '';
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--secondary-color);
}

.process-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* 오토십 가이드 스타일 */
.guide-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.guide-icon i {
    color: white;
    font-size: 18px;
}

.guide-text {
    display: flex;
    flex-direction: column;
}

.guide-item:nth-child(1) .guide-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.guide-item:nth-child(2) .guide-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.guide-item:nth-child(3) .guide-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.guide-item:nth-child(4) .guide-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

/* 통합된 모바일 반응형 타이포그래피 */
@media (max-width: 992px) {
    .signup-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .step-item {
        width: 100%;
        max-width: 350px;
    }
    
    .step-connector {
        width: 2px;
        height: 30px;
        flex-grow: 0;
        max-width: none;
    }
    
    .step-connector:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid var(--secondary-color);
    }
}

@media (max-width: 768px) {
    /* 기본 타이포그래피 */
    h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    h2 {
        font-size: calc(var(--font-xxxl) * 0.9);
    }
    
    h3 {
        font-size: calc(var(--font-xxl) * 0.9);
    }
    
    .section-title {
        font-size: calc(var(--font-xxxl) * 0.9);
    }
    
    .section-desc {
        font-size: var(--font-sm);
    }
    
    /* 배너 및 하이라이트 */
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
    
    /* 제품, 가이드, 단계 등 텍스트 */
    .product-card p,
    .product-card.expanded .product-description p,
    .autoship-feature p,
    .step-item p,
    .guide-text span {
        font-size: var(--font-sm);
    }
    
    /* 인증 관련 텍스트 */
    .certification-icons .product-text-info span {
        font-size: var(--font-xs);
    }
}

@media (max-width: 576px) {
    body {
        font-size: var(--font-sm);
    }
    
    h1, .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    h2 {
        font-size: calc(var(--font-xxxl) * 0.8);
    }
    
    h3 {
        font-size: calc(var(--font-xxl) * 0.8);
    }
    
    .section-title {
        font-size: calc(var(--font-xxxl) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
    
    /* 작은 화면에서도 버튼 텍스트 가독성 유지 */
    .btn {
        font-size: var(--font-sm);
        padding: 0.8rem 1.5rem;
    }
    
    /* 단계별 요소 텍스트 크기 조정 */
    .step-item h4 {
        font-size: var(--font-sm);
    }
    
    .step-item p {
        font-size: var(--font-xs);
    }
}

/* 센터 페이지 스타일 개선 */
.page-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(var(--pm-red), 0.07) 0%, #ffffff 50%, rgba(var(--pm-navy), 0.07) 100%);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(230, 0, 45, 0.07) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-huge);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-banner p {
    max-width: 700px;
    margin: 0 auto var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    letter-spacing: -0.01em;
}

.center-slogan {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(var(--pm-red), 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    border-radius: 30px;
    margin-top: var(--spacing-sm);
    letter-spacing: -0.01em;
}

/* 센터 소개 섹션 개선 */
.center-intro {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.center-intro .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.intro-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.intro-content p.lead {
    font-size: var(--font-xl);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.intro-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-md);
}

.center-name-tag {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: rgba(var(--pm-navy), 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
}

.center-name {
    font-size: var(--font-xl);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.center-subtitle {
    font-size: var(--font-md);
    color: var(--text-color);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.intro-image:hover img {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* 비전 섹션 개선 */
.vision-intro {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.vision-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.vision-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.vision-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.vision-statement {
    font-size: var(--font-xl);
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    font-style: italic;
}

.vision-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.eco-friendly-statement {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(var(--pm-navy), 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: var(--font-md);
    border-radius: 30px;
    margin-top: var(--spacing-sm);
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

/* 핵심 가치 섹션 개선 */
.core-values {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.values-tagline {
    display: inline-block;
    margin: var(--spacing-md) auto var(--spacing-xl);
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(var(--pm-red), 0.1) 0%, rgba(var(--pm-navy), 0.1) 100%);
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-lg);
    border-radius: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.value-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 5px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-card:nth-child(1) {
    border-top-color: var(--primary-color);
}

.value-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.value-card:nth-child(3) {
    border-top-color: var(--accent-color);
}

.value-card:nth-child(4) {
    border-top-color: #4cd964;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 8px 15px rgba(var(--pm-red), 0.2);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    box-shadow: 0 8px 15px rgba(var(--pm-navy), 0.2);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 8px 15px rgba(255, 206, 84, 0.2);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #4cd964, #8efa7b);
    box-shadow: 0 8px 15px rgba(76, 217, 100, 0.2);
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.value-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* 센터 특징 섹션 개선 */
.center-features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* 시음회 섹션 개선 */
.center-tasting {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.05) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.05) 100%);
}

.tasting-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tasting-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.tasting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.tasting-feature {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.tasting-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tasting-feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.tasting-feature h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
}

.tasting-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.tasting-cta {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tasting-tagline {
    font-size: var(--font-lg);
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* 비전 스토리 섹션 개선 */
.vision-story {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.story-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.story-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-md);
}

/* 인포그래픽 섹션 개선 */
.vision-infographic {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.infographic-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.infographic-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    text-align: center;
}

.infographic-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.infographic-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.infographic-text {
    font-size: var(--font-md);
    color: var(--text-color);
    font-weight: 500;
}

/* 팀 섹션 개선 */
.team-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.member-photo {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: var(--spacing-md);
}

.member-info h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-lg);
    font-weight: 600;
}

.member-position {
    color: var(--primary-color);
    font-size: var(--font-sm);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.member-bio {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.social-links {
    margin-top: var(--spacing-sm);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* 애니메이션 효과 */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .center-intro .container,
    .vision-intro .container,
    .tasting-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .intro-image,
    .vision-image {
        order: -1;
    }
    
    .infographic-item {
        width: 170px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .page-banner p {
        font-size: var(--font-md);
    }
    
    .intro-content p.lead,
    .vision-statement {
        font-size: var(--font-lg);
    }
    
    .intro-content p,
    .vision-content p,
    .story-content p {
        font-size: var(--font-sm);
    }
    
    .center-name {
        font-size: var(--font-lg);
    }
    
    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .infographic-container {
        gap: var(--spacing-md);
    }
    
    .infographic-item {
        width: 140px;
        padding: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .center-slogan,
    .eco-friendly-statement,
    .values-tagline {
        font-size: var(--font-sm);
    }
    
    .infographic-container {
        flex-direction: column;
        align-items: center;
    }
    
    .infographic-item {
        width: 100%;
        max-width: 280px;
    }
}

/* 고객 후기 섹션 스타일 */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
}

.testimonial-avatar i {
    font-size: 28px;
    color: white;
}

.testimonial-user h4 {
    margin: 0;
    font-size: var(--font-md);
    color: var(--text-color);
}

.testimonial-stars {
    color: #ffce54;
    font-size: var(--font-sm);
    margin-top: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-sm);
}

.testimonial-date {
    text-align: right;
    font-size: var(--font-xs);
    color: var(--text-light);
    font-style: italic;
}

/* FAQ 섹션 스타일 */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-bg);
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f0f0f2;
}

.faq-question.active {
    background-color: var(--white);
}

.faq-question h3 {
    margin: 0;
    font-size: var(--font-md);
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: var(--spacing-md);
    margin: 0;
}

/* 가이드 비디오 섹션 스타일 */
.guide-videos {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
}

#youtube-player {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.youtube-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.video-list {
    margin-top: var(--spacing-xl);
}

.video-list h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.video-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.video-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-color-rgb), 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.video-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: var(--spacing-sm);
}

.video-info h4 {
    margin-bottom: 0.5rem;
    font-size: var(--font-md);
}

.video-info p {
    margin-bottom: 0;
    font-size: var(--font-xs);
    color: var(--text-light);
}

/* 팁 섹션 스타일 */
.tips-section {
    padding: var(--spacing-xl) 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.tip-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.tip-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.tip-card p {
    margin-bottom: 0;
    font-size: var(--font-sm);
    color: var(--text-light);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .video-list ul {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    #youtube-player iframe {
        height: 320px;
    }
    
    .youtube-controls {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .video-info h4 {
        font-size: var(--font-sm);
    }
    
    .video-info p {
        font-size: var(--font-xxs);
    }
    
    #youtube-player iframe {
        height: 240px;
    }
    
    .tip-card {
        padding: var(--spacing-md);
    }
}

/* PM 인터내셔널 소개 페이지 스타일 */
.about-intro {
    background-color: #f8fafc;
    padding: 80px 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-content h2 {
    font-size: var(--font-xxl);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-content .lead {
    font-size: var(--font-lg);
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image {
    position: relative;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: var(--font-xs);
}

.certification-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.certification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.certification-text p {
    font-size: var(--font-md);
    margin-bottom: 30px;
    line-height: 1.7;
}

.certification-logos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cert-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.certification-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-for-all-section {
    background: linear-gradient(to right, #f0f5fa, #e6f0ff);
    padding: 80px 0;
}

.product-for-all-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-for-all-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-for-all-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.founding-story-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.founding-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.founding-story-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.founding-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 3px solid #1a5aad;
}

.timeline-year {
    background-color: #1a5aad;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content {
    font-size: var(--font-md);
    color: var(--text-color);
}

.ntc-technology-section {
    background-color: #f0f7f3;
    padding: 80px 0;
}

.ntc-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.ntc-image {
    display: flex;
    justify-content: center;
}

.ntc-logo {
    max-width: 250px;
    height: auto;
}

.ntc-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-highlight-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.product-highlight-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-highlight-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-highlight-image img {
    max-height: 100%;
    max-width: 100%;
}

.product-highlight-item h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-highlight-item p {
    font-size: var(--font-md);
    color: var(--text-light);
}

.business-opportunity-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.business-opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.business-opportunity-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.business-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.business-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(26, 90, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 24px;
    color: #1a5aad;
}

.step-text {
    flex: 1;
}

.step-text h4 {
    font-size: var(--font-md);
    color: var(--text-color);
    margin-bottom: 10px;
}

.step-text p {
    font-size: var(--font-sm);
    color: var(--text-light);
    margin-bottom: 0;
}

.social-contribution-section {
    background-color: #f0f7f3;
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

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

.contribution-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.contribution-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.contribution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(26, 90, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contribution-icon i {
    font-size: 36px;
    color: #1a5aad;
}

.contribution-item h3 {
    font-size: var(--font-lg);
    color: var(--text-color);
    margin-bottom: 15px;
}

.contribution-item p {
    font-size: var(--font-md);
    color: var(--text-light);
    margin-bottom: 0;
}

.global-presence-section {
    background: linear-gradient(to bottom, #f3f8ff, #e6f0ff);
    padding: 80px 0;
}

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

.global-stat-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.global-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: var(--font-huge);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: var(--font-md);
    color: var(--text-color);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2b5b 0%, #1a5aad 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--font-xxl);
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: var(--font-lg);
    color: #fff;
    margin-bottom: 30px;
}

.cta-content .btn {
    font-size: var(--font-md);
    padding: 15px 40px;
}

@media (max-width: 992px) {
    .about-intro .container,
    .certification-content,
    .product-for-all-content,
    .founding-story-content,
    .ntc-content,
    .business-opportunity-content {
        grid-template-columns: 1fr;
    }
    
    .product-highlight-grid,
    .contribution-grid,
    .global-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-image {
        margin-top: 30px;
    }
    
    .certification-image,
    .product-for-all-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .product-highlight-grid,
    .contribution-grid,
    .global-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* 회사 소개 페이지 배너 배지 */
.banner-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    animation: fadeIn 1s ease-in-out;
}

.banner-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.banner-badge:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.banner-badge i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: #8cddfd;
}

/* 회사 가치 태그 */
.company-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.value-tag {
    background-color: rgba(15, 43, 91, 0.1);
    color: #0f2b5b;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.value-tag i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: #1a5aad;
}

.value-tag:hover {
    background-color: rgba(15, 43, 91, 0.2);
    transform: translateY(-2px);
}

/* 제품 카테고리 */
.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.product-category {
    background-color: #f7f9fc;
    color: #1a3569;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-category i {
    margin-right: 10px;
    color: #1a5aad;
    font-size: 1.1rem;
}

.product-category:hover {
    background-color: #e9f0f7;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* NTC 혜택 표시 */
.ntc-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.ntc-benefit {
    background-color: #f0f5fa;
    border-left: 3px solid #1a5aad;
    padding: 12px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ntc-benefit i {
    margin-right: 12px;
    color: #1a5aad;
    font-size: 1.2rem;
}

.ntc-benefit span {
    font-weight: 500;
    color: #1a3569;
}

.ntc-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #e9f0f7;
}

/* 글로벌 리더십과 비전 섹션 */
.leadership-vision-section {
    background: linear-gradient(to right, #f3f8ff, #e8f4ff);
    padding: 80px 0;
}

.leadership-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.leadership-image {
    flex: 1 1 350px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.leadership-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.leadership-image:hover img {
    transform: scale(1.05);
}

.leadership-text {
    flex: 1 1 500px;
}

.leadership-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333333;
}

.vision-pillars {
    margin-top: 30px;
}

.vision-pillar {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vision-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f4ff;
    border-radius: 50%;
    margin-right: 15px;
}

.pillar-icon i {
    font-size: 1.3rem;
    color: #1a5aad;
}

.pillar-text {
    flex: 1;
}

.pillar-text h4 {
    margin: 0 0 5px;
    color: #1a5aad;
    font-weight: 600;
    font-size: 1.1rem;
}

.pillar-text p {
    margin: 0;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 비즈니스 통계 */
.business-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.business-stat {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 150px;
    background-color: #f0f5fa;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.business-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #e9f0f7;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5aad;
    margin-bottom: 5px;
}

.stat-desc {
    color: #555555;
    font-size: 0.95rem;
}

/* 인용구 스타일 */
.contribution-quote {
    position: relative;
    background-color: #f7f9fc;
    border-left: 5px solid #1a5aad;
    margin: 40px 0 20px;
    padding: 30px 30px 30px 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contribution-quote i {
    position: absolute;
    left: 20px;
    top: 30px;
    font-size: 1.5rem;
    color: #1a5aad;
    opacity: 0.5;
}

.contribution-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #333333;
}

.contribution-quote span {
    display: block;
    text-align: right;
    font-weight: 600;
    color: #1a5aad;
}

/* 글로벌 맵 */
.global-map {
    background-color: rgba(26, 90, 173, 0.05);
    padding: 20px;
}

.world-map {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.global-map:hover .world-map {
    transform: scale(1.05);
}

/* CTA 버튼 그룹 */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* About 페이지 배너 */
.about-banner {
    background: linear-gradient(135deg, #0f2b5b 0%, #1a5aad 100%);
}

/* 반응형 조정 */
@media (max-width: 992px) {
    .leadership-content, 
    .ntc-content, 
    .business-opportunity-content {
        flex-direction: column;
    }
    
    .leadership-image, 
    .ntc-image {
        margin-bottom: 30px;
    }
    
    .banner-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .banner-badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .value-tag, 
    .product-category {
        font-size: 0.85rem;
    }
    
    .ntc-benefit {
        flex: 1 1 100%;
    }
    
    .vision-pillar {
        padding: 15px;
    }
    
    .pillar-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .business-stat {
        flex: 1 1 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .banner-badges {
        margin-top: 20px;
        gap: 10px;
    }
    
    .banner-badge {
        width: 100%;
        justify-content: center;
    }
    
    .contribution-quote {
        padding: 25px 20px 25px 40px;
    }
    
    .contribution-quote i {
        font-size: 1.2rem;
        left: 15px;
        top: 25px;
    }
}

/* 각 섹션별 물결 구분선 */
.product-for-all-section::after,
.ntc-technology-section::after,
.leadership-vision-section::after,
.social-contribution-section::after {
    content: '';
    display: block;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff" /></svg>');
    background-size: cover;
    background-position: center;
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

/* 섹션 간 일관된 패딩 */
.about-intro,
.certification-section,
.product-for-all-section,
.founding-story-section,
.ntc-technology-section,
.leadership-vision-section,
.business-opportunity-section,
.social-contribution-section,
.global-presence-section,
.cta-section {
    padding: 100px 0;
}

/* 글로벌 맵 스타일 복원 및 업데이트 */
.global-map {
    margin: 30px 0;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(26, 90, 173, 0.05);
    padding: 20px;
}

/* 카드 섹션 요소 그림자 효과 */
.vision-pillar, 
.business-stat, 
.contribution-item, 
.global-stat-item {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vision-pillar:hover, 
.business-stat:hover, 
.contribution-item:hover, 
.global-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-intro,
    .certification-section,
    .product-for-all-section,
    .founding-story-section,
    .ntc-technology-section,
    .leadership-vision-section,
    .business-opportunity-section,
    .social-contribution-section,
    .global-presence-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .product-for-all-section::after,
    .ntc-technology-section::after,
    .leadership-vision-section::after,
    .social-contribution-section::after {
        height: 30px;
        margin-top: -30px;
    }
}

/* 노란색 테마 강화 */
.story-section {
    background-color: #fffdf5;
}

.story-content h2 {
    color: #333;
}

.story-section .btn.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FFD700;
    color: #333;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.story-section .btn.btn-primary:hover {
    background-color: #333;
    color: #FFD700;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.story-section .btn.btn-primary i {
    transition: transform 0.3s ease;
    color: #333;
}

.story-section .btn.btn-primary:hover i {
    transform: translateX(5px);
    color: #FFD700;
}

.btn.btn-primary span {
    margin-right: 10px;
}

/* 제주센터 소개 페이지를 위한 CSS 개선 - 2025년 4월 */

/* 섹션 배지 스타일 */
.section-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 제목 라인 스타일 */
.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* 섹션 부제목 스타일 */
.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* 히어로 배너 스타일 */
.hero-banner {
    position: relative;
    padding: 8rem 0;
    background-image: url('../images/FullScreenPicture2-1920x0.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 61, 121, 0.9), rgba(29, 61, 121, 0.7));
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto 0 0; /* Changed from "margin: 0 auto;" to align left */
    text-align: left; /* Added explicit left alignment */
    padding-left: 50px; /* Added left padding */
}

.banner-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: 0; /* Changed from auto to 0 */
    margin-right: auto;
    line-height: 1.6;
}

.banner-features {
    display: flex;
    justify-content: flex-start; /* Changed from "center" to "flex-start" */
    gap: 2rem;
    margin-bottom: 3rem;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.banner-cta {
    display: flex;
    justify-content: flex-start; /* Changed from "center" to "flex-start" */
    gap: 1rem;
    margin-top: 2rem;
}

.banner-cta .btn {
    min-width: 180px;
}

/* 센터 소개 섹션 스타일 */
.center-intro {
    padding: 6rem 0;
    background-color: #fff;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.intro-content {
    padding-right: 2rem;
}

.intro-content .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.intro-quote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.intro-quote i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.intro-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intro-feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.intro-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.02);
}

.intro-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 2rem 1.5rem 1rem;
    font-size: 0.9rem;
}

/* 센터 운영 안내 스타일 */
.center-info-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.center-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.center-info-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-card-icon i {
    font-size: 1.8rem;
}

.center-info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.center-info-card p {
    color: #555;
    margin-bottom: 0;
}

.center-info-image-gallery {
    margin-bottom: 4rem;
}

.gallery-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.gallery-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.center-info-cta {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #555;
    font-size: 0.95rem;
}

.cta-contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* 센터 특징 섹션 스타일 */
.center-features {
    padding: 6rem 0;
    background-color: #fff;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
}

.feature-card-icon i {
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #555;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.feature-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 0.8rem;
}

.features-highlight {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 0;
}

.highlight-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
}

.highlight-logo {
    width: 100%;
    padding: 2rem;
    background-color: #fff;
    display: block;
}

.highlight-text {
    padding: 3rem;
}

.highlight-text h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.highlight-text p {
    margin-bottom: 1.5rem;
}

/* 제품 갤러리 섹션 스타일 */
.product-gallery {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(230, 0, 45, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--spacing-md) var(--spacing-lg);
}

.product-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-title i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-title strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.product-desc {
    display: block;
    color: var(--text-color);
    font-size: 15px;
    padding-left: 38px;
    line-height: 1.4;
    margin-top: 2px;
}

.product-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.product-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.product-benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.product-benefits-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-benefits-list li i {
    color: white;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.product-grid.detailed .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-grid.detailed .product-card .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-card.expanded {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-card.expanded .product-image {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card.expanded .product-image img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.product-card.expanded .product-image img:hover {
    transform: scale(1.05);
}

.product-card.expanded .product-content {
    flex: 1;
    padding: var(--spacing-lg);
}

.product-card.expanded h3 {
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card.expanded .product-tagline {
    margin-bottom: var(--spacing-md);
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(230, 0, 45, 0.2);
}

.product-card.expanded .product-description p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    line-height: 1.6;
    font-size: var(--font-sm);
}

.autoship-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
}

.autoship-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.autoship-top-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.autoship-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.autoship-lead {
    font-size: var(--font-lg);
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.7;
    text-align: left;
}

.autoship-cta {
    width: 100%;
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(29, 61, 121, 0.15);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autoship-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 61, 121, 0.2);
}

.autoship-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.autoship-feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.autoship-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.autoship-feature .feature-icon {
    background-color: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
}

.autoship-feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature h3 {
    font-size: var(--font-lg);
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.autoship-feature h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.autoship-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.autoship-feature p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 이미지 관련 CSS 주석 처리
.autoship-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.autoship-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
*/

.autoship-cta h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.autoship-cta h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.autoship-instructions {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.autoship-instructions li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.autoship-instructions li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.autoship-cta .btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

.story-section {
    padding: 100px 0;
    background-color: #fffdf5; /* 노란색 계열 배경색으로 변경 */
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjRkZENzAwIiBvcGFjaXR5PSIwLjA1Ij48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.story-content {
    flex: 0 0 45%;
    max-width: 45%;
    animation: fadeInLeft 1s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: #FFD700; /* 노란색으로 변경 */
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: space-between; /* 균등한 간격으로 배치 */
}

.feature-card {
    flex: 1 1 30%;
    min-width: 100px;
    height: 120px; /* 고정 높이 설정 */
    width: 200px; /* 고정 너비 설정 */
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto; /* 중앙 정렬을 위한 마진 설정 */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px; /* 아이콘 크기 통일 */
    height: 60px; /* 아이콘 크기 통일 */
    border-radius: 50%;
    background-color: #1a3569; /* 파란색 배경으로 변경 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon i {
    font-size: 22px;
    color: #ffffff; /* 아이콘 색상을 흰색으로 변경 */
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.center-quote {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.center-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.center-quote p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.story-image-container {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-container:hover .story-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.image-decoration {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 8px solid #FFD700;
    border-radius: 15px;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.3;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FFD700;
    color: #333;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.btn.btn-primary:hover {
    background-color: #333;
    color: #FFD700;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.btn.btn-primary i {
    transition: transform 0.3s ease;
    color: #333;
}

.btn.btn-primary:hover i {
    transform: translateX(5px);
    color: #FFD700;
}

.product-features-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.center-info-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(to right, #ffffff 0%, var(--light-bg) 100%);
}

.center-info-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.center-info-content h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-xxxl);
    font-weight: 700;
}

.center-info-content p {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: var(--font-md);
    font-weight: 500;
}

.center-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.center-info-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: var(--font-sm);
}

.center-info-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.center-info-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.center-info-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

footer {
    background: linear-gradient(to bottom, #2a2a2a, var(--pm-navy));
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    max-height: 120px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-logo p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.footer-links, .footer-contact, .footer-social {
    margin-bottom: var(--spacing-lg);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: var(--font-md);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
    font-weight: 600;
}

.footer-links h3:after, .footer-contact h3:after, .footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-sm);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--font-sm);
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-xs);
    margin: 0;
}

.brand-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    color: var(--primary-color);
    line-height: 1.5;
    font-style: italic;
}

.eco-tag, .eco-friendly-tag {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin: var(--spacing-md) 0;
    font-size: var(--font-md);
}

/* 배너 그리드 스타일 */
.banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.banner-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-highlights.right-highlights {
    margin-top: 20px;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.product-images-set {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images-set .product-image {
    position: absolute;
    max-width: 300px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    animation: none;
}

.product-images-set .product-image-top {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
    z-index: 3;
    max-width: 250px;
}

.product-images-set .product-image-left {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
    z-index: 1;
}

.product-images-set .product-image-right {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
    z-index: 2;
}

.product-images-set .product-image:hover {
    transform: none;
}

.product-images-set .product-image-top:hover {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
}

.product-images-set .product-image-left:hover {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
}

.product-images-set .product-image-right:hover {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
}

.banner-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Added explicit left alignment */
    padding-left: 50px; /* Added left padding */
}

.banner-text h1 {
    font-size: var(--font-huge);
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.banner-description {
    font-size: var(--font-md);
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    font-weight: 400;
    word-spacing: 1px;
}

.banner-description strong {
    font-weight: 700;
    color: var(--text-color);
}

.banner-note {
    font-size: var(--font-sm);
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.product-highlights {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    max-width: 700px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 5px 10px;
    border-right: 1px dashed rgba(0, 0, 0, 0.1);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-icon {
    color: var(--primary-color);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: white;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: var(--text-color);
    line-height: 1.4;
    width: 100%;
}

.highlight-text strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.banner-slogan {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.banner-text .btn {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

.highlight-primary {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.text-accent {
    color: var(--secondary-color);
    font-weight: 600;
}

.highlight-stat {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-keyword {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.highlight-secondary {
    display: inline-block;
    background-color: rgba(29, 61, 121, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.global-presence-strip {
    background: linear-gradient(to right, var(--pm-red), var(--pm-navy));
    padding: 20px 0;
    color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.global-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.stat-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.stat-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.summary-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
    color: white;
    font-size: 24px;
}

.summary-item:nth-child(2) .summary-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.summary-item:nth-child(3) .summary-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

.product-summary {
    padding: 40px 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.summary-item {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.summary-item h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--text-color);
}

.summary-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

.product-text-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.product-text-summary.certification-icons {
    margin: 25px 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-text-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.certification-icons .product-text-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--light-gray);
}

.certification-icons .product-text-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-text-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.certification-icons .product-text-item i {
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.product-text-info {
    display: flex;
    flex-direction: column;
}

.certification-icons .product-text-info strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.certification-icons .product-text-info span {
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--font-sm);
}

.cert-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    object-fit: contain;
}

.banner-feature-item .feature-icon {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.banner-feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.banner-feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

@media (max-width: 768px) {
    .product-images-set {
        height: 500px;
        align-items: center;
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    .banner-right {
        overflow: visible;
        margin-top: 50px;
    }

    /* 인기 제품 카드 모바일 스타일 */
    .product-grid.detailed .product-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-card.expanded .product-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        margin: 0 auto;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 280px;
        margin: 0 auto;
        object-fit: contain;
    }

    .product-highlights {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .highlight-item {
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        padding: 10px 5px;
    }
    
    .highlight-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .product-images-set {
        height: 500px;
        transform: scale(0.9);
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    /* 더 작은 화면에서 인기 제품 이미지 조정 */
    .product-card.expanded .product-image {
        padding: 10px;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-features {
        gap: 12px;
        padding: 20px;
    }
    
    .banner-feature-item {
        gap: 10px;
    }
    
    .banner-feature-item .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .banner-feature-item p {
        font-size: 15px;
    }
    
    .product-text-summary {
        padding: 12px;
        flex-wrap: wrap;
    }
    
    .product-text-item {
        padding: 8px 5px;
        flex-basis: 33%;
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }
    
    .product-text-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .banner-grid {
        gap: 20px;
    }
    
    .banner-right {
        margin-top: 20px;
    }
    
    .cert-logo {
        width: 80px;
    }
    
    .highlight-keyword, .highlight-secondary {
        display: inline;
        padding: 1px 3px;
    }
}

.cert-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.cert-line-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cert-line-item i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cert-text {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.cert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    object-fit: contain;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.autoship-guide-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
}

.guide-item {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    min-width: 200px;
}

.guide-text strong {
    font-size: var(--font-md);
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.guide-text span {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.4;
}

/* 모바일 반응형 적용 */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
}

@media (max-width: 576px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
}

/* 오토십 가입 절차 섹션 */
.signup-process-section {
    width: 100%;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-title {
    text-align: center;
    color: var(--text-color);
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.process-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.signup-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--spacing-lg) 0;
    position: relative;
    flex-wrap: nowrap;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-item:nth-child(1) {
    border-top-color: #ff416c;
    background-color: rgba(255, 65, 108, 0.03);
}

.step-item:nth-child(3) {
    border-top-color: #4364f7;
    background-color: rgba(67, 100, 247, 0.03);
}

.step-item:nth-child(5) {
    border-top-color: #ff5858;
    background-color: rgba(255, 88, 88, 0.03);
}

.step-item:nth-child(7) {
    border-top-color: #38ef7d;
    background-color: rgba(56, 239, 125, 0.03);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 15px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    border: 3px solid transparent;
}

.step-item:nth-child(1) .step-icon {
    color: #ff416c;
    border-color: rgba(255, 75, 43, 0.3);
}

.step-item:nth-child(3) .step-icon {
    color: #4364f7;
    border-color: rgba(30, 144, 255, 0.3);
}

.step-item:nth-child(5) .step-icon {
    color: #ff5858;
    border-color: rgba(240, 152, 25, 0.3);
}

.step-item:nth-child(7) .step-icon {
    color: #38ef7d;
    border-color: rgba(17, 153, 142, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}

/* 각 단계별 다른 색상 적용 */
.step-item:nth-child(1) .step-number {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

.step-item:nth-child(3) .step-number {
    background: linear-gradient(135deg, #1e90ff, #4364f7);
}

.step-item:nth-child(5) .step-number {
    background: linear-gradient(135deg, #f09819, #ff5858);
}

.step-item:nth-child(7) .step-number {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.step-item h4 {
    margin: 10px 0;
    color: var(--text-color);
    font-size: var(--font-md);
    font-weight: 600;
}

.step-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.5;
    margin-bottom: 0;
}

.step-connector {
    height: 2px;
    flex-grow: 0.5;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: relative;
    z-index: 0;
    max-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector:after {
    content: '';
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--secondary-color);
}

.process-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* 오토십 가이드 스타일 */
.guide-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.guide-icon i {
    color: white;
    font-size: 18px;
}

.guide-text {
    display: flex;
    flex-direction: column;
}

.guide-item:nth-child(1) .guide-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.guide-item:nth-child(2) .guide-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.guide-item:nth-child(3) .guide-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.guide-item:nth-child(4) .guide-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

/* 통합된 모바일 반응형 타이포그래피 */
@media (max-width: 992px) {
    .signup-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .step-item {
        width: 100%;
        max-width: 350px;
    }
    
    .step-connector {
        width: 2px;
        height: 30px;
        flex-grow: 0;
        max-width: none;
    }
    
    .step-connector:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid var(--secondary-color);
    }
}

@media (max-width: 768px) {
    /* 기본 타이포그래피 */
    h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    h2 {
        font-size: calc(var(--font-xxxl) * 0.9);
    }
    
    h3 {
        font-size: calc(var(--font-xxl) * 0.9);
    }
    
    .section-title {
        font-size: calc(var(--font-xxxl) * 0.9);
    }
    
    .section-desc {
        font-size: var(--font-sm);
    }
    
    /* 배너 및 하이라이트 */
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
    
    /* 제품, 가이드, 단계 등 텍스트 */
    .product-card p,
    .product-card.expanded .product-description p,
    .autoship-feature p,
    .step-item p,
    .guide-text span {
        font-size: var(--font-sm);
    }
    
    /* 인증 관련 텍스트 */
    .certification-icons .product-text-info span {
        font-size: var(--font-xs);
    }
}

@media (max-width: 576px) {
    body {
        font-size: var(--font-sm);
    }
    
    h1, .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    h2 {
        font-size: calc(var(--font-xxxl) * 0.8);
    }
    
    h3 {
        font-size: calc(var(--font-xxl) * 0.8);
    }
    
    .section-title {
        font-size: calc(var(--font-xxxl) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
    
    /* 작은 화면에서도 버튼 텍스트 가독성 유지 */
    .btn {
        font-size: var(--font-sm);
        padding: 0.8rem 1.5rem;
    }
    
    /* 단계별 요소 텍스트 크기 조정 */
    .step-item h4 {
        font-size: var(--font-sm);
    }
    
    .step-item p {
        font-size: var(--font-xs);
    }
}

/* 센터 페이지 스타일 개선 */
.page-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(var(--pm-red), 0.07) 0%, #ffffff 50%, rgba(var(--pm-navy), 0.07) 100%);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(230, 0, 45, 0.07) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-huge);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-banner p {
    max-width: 700px;
    margin: 0 auto var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    letter-spacing: -0.01em;
}

.center-slogan {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(var(--pm-red), 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    border-radius: 30px;
    margin-top: var(--spacing-sm);
    letter-spacing: -0.01em;
}

/* 센터 소개 섹션 개선 */
.center-intro {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.center-intro .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.intro-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.intro-content p.lead {
    font-size: var(--font-xl);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.intro-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-md);
}

.center-name-tag {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: rgba(var(--pm-navy), 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
}

.center-name {
    font-size: var(--font-xl);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.center-subtitle {
    font-size: var(--font-md);
    color: var(--text-color);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.intro-image:hover img {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* 비전 섹션 개선 */
.vision-intro {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.vision-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.vision-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.vision-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.vision-statement {
    font-size: var(--font-xl);
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    font-style: italic;
}

.vision-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.eco-friendly-statement {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(var(--pm-navy), 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: var(--font-md);
    border-radius: 30px;
    margin-top: var(--spacing-sm);
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

/* 핵심 가치 섹션 개선 */
.core-values {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.values-tagline {
    display: inline-block;
    margin: var(--spacing-md) auto var(--spacing-xl);
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(var(--pm-red), 0.1) 0%, rgba(var(--pm-navy), 0.1) 100%);
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-lg);
    border-radius: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.value-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 5px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-card:nth-child(1) {
    border-top-color: var(--primary-color);
}

.value-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.value-card:nth-child(3) {
    border-top-color: var(--accent-color);
}

.value-card:nth-child(4) {
    border-top-color: #4cd964;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 8px 15px rgba(var(--pm-red), 0.2);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    box-shadow: 0 8px 15px rgba(var(--pm-navy), 0.2);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 8px 15px rgba(255, 206, 84, 0.2);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #4cd964, #8efa7b);
    box-shadow: 0 8px 15px rgba(76, 217, 100, 0.2);
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.value-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* 센터 특징 섹션 개선 */
.center-features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* 시음회 섹션 개선 */
.center-tasting {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.05) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.05) 100%);
}

.tasting-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tasting-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.tasting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.tasting-feature {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.tasting-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tasting-feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.tasting-feature h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
}

.tasting-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.tasting-cta {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tasting-tagline {
    font-size: var(--font-lg);
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* 비전 스토리 섹션 개선 */
.vision-story {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.story-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.story-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-md);
}

/* 인포그래픽 섹션 개선 */
.vision-infographic {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.infographic-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.infographic-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    text-align: center;
}

.infographic-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.infographic-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.infographic-text {
    font-size: var(--font-md);
    color: var(--text-color);
    font-weight: 500;
}

/* 팀 섹션 개선 */
.team-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.member-photo {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: var(--spacing-md);
}

.member-info h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-lg);
    font-weight: 600;
}

.member-position {
    color: var(--primary-color);
    font-size: var(--font-sm);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.member-bio {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.social-links {
    margin-top: var(--spacing-sm);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* 애니메이션 효과 */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .center-intro .container,
    .vision-intro .container,
    .tasting-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .intro-image,
    .vision-image {
        order: -1;
    }
    
    .infographic-item {
        width: 170px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .page-banner p {
        font-size: var(--font-md);
    }
    
    .intro-content p.lead,
    .vision-statement {
        font-size: var(--font-lg);
    }
    
    .intro-content p,
    .vision-content p,
    .story-content p {
        font-size: var(--font-sm);
    }
    
    .center-name {
        font-size: var(--font-lg);
    }
    
    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .infographic-container {
        gap: var(--spacing-md);
    }
    
    .infographic-item {
        width: 140px;
        padding: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .center-slogan,
    .eco-friendly-statement,
    .values-tagline {
        font-size: var(--font-sm);
    }
    
    .infographic-container {
        flex-direction: column;
        align-items: center;
    }
    
    .infographic-item {
        width: 100%;
        max-width: 280px;
    }
}

/* 고객 후기 섹션 스타일 */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
}

.testimonial-avatar i {
    font-size: 28px;
    color: white;
}

.testimonial-user h4 {
    margin: 0;
    font-size: var(--font-md);
    color: var(--text-color);
}

.testimonial-stars {
    color: #ffce54;
    font-size: var(--font-sm);
    margin-top: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-sm);
}

.testimonial-date {
    text-align: right;
    font-size: var(--font-xs);
    color: var(--text-light);
    font-style: italic;
}

/* FAQ 섹션 스타일 */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-bg);
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f0f0f2;
}

.faq-question.active {
    background-color: var(--white);
}

.faq-question h3 {
    margin: 0;
    font-size: var(--font-md);
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: var(--spacing-md);
    margin: 0;
}

/* 가이드 비디오 섹션 스타일 */
.guide-videos {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
}

#youtube-player {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.youtube-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.video-list {
    margin-top: var(--spacing-xl);
}

.video-list h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.video-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.video-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-color-rgb), 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.video-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: var(--spacing-sm);
}

.video-info h4 {
    margin-bottom: 0.5rem;
    font-size: var(--font-md);
}

.video-info p {
    margin-bottom: 0;
    font-size: var(--font-xs);
    color: var(--text-light);
}

/* 팁 섹션 스타일 */
.tips-section {
    padding: var(--spacing-xl) 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.tip-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.tip-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.tip-card p {
    margin-bottom: 0;
    font-size: var(--font-sm);
    color: var(--text-light);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .video-list ul {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    #youtube-player iframe {
        height: 320px;
    }
    
    .youtube-controls {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .video-info h4 {
        font-size: var(--font-sm);
    }
    
    .video-info p {
        font-size: var(--font-xxs);
    }
    
    #youtube-player iframe {
        height: 240px;
    }
    
    .tip-card {
        padding: var(--spacing-md);
    }
}

/* PM 인터내셔널 소개 페이지 스타일 */
.about-intro {
    background-color: #f8fafc;
    padding: 80px 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-content h2 {
    font-size: var(--font-xxl);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-content .lead {
    font-size: var(--font-lg);
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image {
    position: relative;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: var(--font-xs);
}

.certification-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.certification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.certification-text p {
    font-size: var(--font-md);
    margin-bottom: 30px;
    line-height: 1.7;
}

.certification-logos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cert-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.certification-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-for-all-section {
    background: linear-gradient(to right, #f0f5fa, #e6f0ff);
    padding: 80px 0;
}

.product-for-all-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-for-all-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-for-all-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.founding-story-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.founding-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.founding-story-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.founding-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 3px solid #1a5aad;
}

.timeline-year {
    background-color: #1a5aad;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content {
    font-size: var(--font-md);
    color: var(--text-color);
}

.ntc-technology-section {
    background-color: #f0f7f3;
    padding: 80px 0;
}

.ntc-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.ntc-image {
    display: flex;
    justify-content: center;
}

.ntc-logo {
    max-width: 250px;
    height: auto;
}

.ntc-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-highlight-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.product-highlight-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-highlight-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-highlight-image img {
    max-height: 100%;
    max-width: 100%;
}

.product-highlight-item h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-highlight-item p {
    font-size: var(--font-md);
    color: var(--text-light);
}

.business-opportunity-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.business-opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.business-opportunity-text p {
    font-size: var(--font-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

nav ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #FFD700;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-toggle span {
    height: 3px;
    width: 100%;
    background-color: #333;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 버튼 스타일 통일 */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn span {
    margin-right: 10px;
}

.btn.btn-primary,
.primary-btn {
    background-color: #FFD700;
    color: #333;
}

.btn.btn-primary:hover,
.primary-btn:hover {
    background-color: #333;
    color: #FFD700;
}

.btn.outline-btn,
.outline-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn.outline-btn:hover,
.outline-btn:hover {
    background-color: #fff;
    color: #333;
}

.secondary-btn {
    background-color: #333;
    color: #FFD700;
}

.secondary-btn:hover {
    background-color: #555;
}

.btn i {
    margin-right: 8px;
}

/* 센터 소개 섹션 레이아웃 개선 */
.center-intro {
    background-color: #fffdf5;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-content {
    padding-right: 20px;
}

.intro-content .lead {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
    padding-left: 50px; /* Added padding-left to create space on the left */
}

.intro-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.intro-quote {
    background-color: #f8f8f8;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    position: relative;
}

.intro-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-right: 10px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-feature i {
    color: #FFD700;
    font-size: 18px;
}

.intro-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

/* 센터 정보 섹션 그리드 수정 */
.center-info-section {
    background-color: #fff;
}

.center-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.center-info-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card-icon i {
    font-size: 28px;
    color: #333;
}

.center-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.center-info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 이미지 갤러리 레이아웃 개선 */
.center-info-image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 60px;
}

.gallery-main {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.gallery-thumb {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

/* CTA 섹션 개선 */
.center-info-cta {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-contact-info {
    flex: 1;
    min-width: 300px;
}

.cta-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.cta-contact-info i {
    color: #FFD700;
}

/* 센터 특징 카드 수정 */
.center-features {
    background-color: #f9f9f9;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card-icon i {
    font-size: 28px;
    color: #333;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-card-footer {
    margin-top: auto;
}

.feature-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-link:hover {
    text-decoration: underline;
}

/* 하이라이트 영역 개선 */
.features-highlight {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.highlight-logo {
    max-width: 100%;
    height: auto;
}

.highlight-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.highlight-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 제품 갤러리 섹션 정렬 */
.product-gallery {
    background-color: #fff;
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.product-cta {
    text-align: center;
}

/* 비전 스토리 섹션 개선 */
.vision-story {
    background-color: #f9f9f9;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.vision-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-text {
    padding-left: 20px;
}

.vision-quote {
    background-color: #fff;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 30px;
    font-style: italic;
    color: #666;
    position: relative;
}

.vision-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-right: 10px;
}

.vision-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.timeline-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-year {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

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

/* 고객 후기 섹션 정렬 */
.testimonials-section {
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 17px;
    margin-bottom: 5px;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

.testimonial-cta {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
}

.testimonial-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* 방문 예약 섹션 레이아웃 개선 */
.visit-booking {
    background-color: #f9f9f9;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.booking-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.booking-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: #FFD700;
    margin-top: 3px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.booking-buttons {
    display: flex;
    gap: 15px;
}

.booking-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ 섹션 정렬 */
.faq-section {
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 18px;
    color: #FFD700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* 푸터 정렬 개선 */
footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #FFD700;
    color: #333;
}

.footer-links h3, .footer-contact h3, .footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FFD700;
}

.footer-contact i {
    color: #FFD700;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: #FFD700;
    color: #333;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e6c200;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer .container {
        padding: 0 20px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo, .footer-contact {
        max-width: 100%;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* 타이포그래피 */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-weight: 700; /* 700으로 변경하여 더 강조 */
    letter-spacing: -0.02em;
    color: var(--text-color);
}

h1 {
    font-size: var(--font-huge);
    letter-spacing: -0.03em;
}

h2 {
    font-size: var(--font-xxxl);
}

h3 {
    font-size: var(--font-xxl);
}

h4 {
    font-size: var(--font-xl);
}

h5 {
    font-size: var(--font-lg);
}

h6 {
    font-size: var(--font-md);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-sm);
    color: var(--text-color);
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-title {
    color: #333;
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    text-align: center;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFD700);
    margin: 20px 0 30px;
    border-radius: 2px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: var(--font-md);
    line-height: 1.6;
}

/* 버튼 스타일 개선 - 가독성 및 일관성 */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-sm);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 0, 45, 0.25);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 61, 121, 0.25);
}

.secondary-btn:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
}

.outline-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 0, 45, 0.25);
    font-weight: 600;
}

.btn.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 0, 45, 0.3);
}

.btn.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 61, 121, 0.25);
    font-weight: 600;
}

.btn.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(29, 61, 121, 0.3);
}

/* 헤더 스타일 개선 */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(230, 0, 45, 0.1);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    transition: var(--transition);
    letter-spacing: -0.02em;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-md);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover:after, nav a.active:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-toggle span {
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* 히어로 배너 */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.05) 0%, 
        #ffffff 40%, 
        rgba(var(--pm-navy), 0.05) 70%, 
        rgba(var(--pm-red), 0.03) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 30px -5px rgba(230, 0, 45, 0.03);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(230, 0, 45, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.hero-banner::after {
    display: none;
}

.hero-banner .container {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-banner p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

/* 홍보 문구 영역 */
.promo-section {
    background-color: var(--light-bg);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.promo-section h2 {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.75rem;
}

/* 인기 제품 영역 */
.featured-products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.product-grid.detailed {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(230, 0, 45, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--spacing-md) var(--spacing-lg);
}

.product-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-title i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-title strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.product-desc {
    display: block;
    color: var(--text-color);
    font-size: 15px;
    padding-left: 38px;
    line-height: 1.4;
    margin-top: 2px;
}

.product-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.product-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.product-benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.product-benefits-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-benefits-list li i {
    color: white;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.product-grid.detailed .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-grid.detailed .product-card .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-card.expanded {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-card.expanded .product-image {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card.expanded .product-image img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.product-card.expanded .product-image img:hover {
    transform: scale(1.05);
}

.product-card.expanded .product-content {
    flex: 1;
    padding: var(--spacing-lg);
}

.product-card.expanded h3 {
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card.expanded .product-tagline {
    margin-bottom: var(--spacing-md);
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(230, 0, 45, 0.2);
}

.product-card.expanded .product-description p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    line-height: 1.6;
    font-size: var(--font-sm);
}

.autoship-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
}

.autoship-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.autoship-top-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.autoship-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.autoship-lead {
    font-size: var(--font-lg);
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.7;
    text-align: left;
}

.autoship-cta {
    width: 100%;
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(29, 61, 121, 0.15);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autoship-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 61, 121, 0.2);
}

.autoship-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.autoship-feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.autoship-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.autoship-feature .feature-icon {
    background-color: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
}

.autoship-feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature h3 {
    font-size: var(--font-lg);
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.autoship-feature h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.autoship-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.autoship-feature p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 이미지 관련 CSS 주석 처리
.autoship-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.autoship-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
*/

.autoship-cta h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.autoship-cta h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.autoship-instructions {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.autoship-instructions li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.autoship-instructions li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.autoship-cta .btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

.story-section {
    padding: 100px 0;
    background-color: #fffdf5; /* 노란색 계열 배경색으로 변경 */
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjRkZENzAwIiBvcGFjaXR5PSIwLjA1Ij48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.story-content {
    flex: 0 0 45%;
    max-width: 45%;
    animation: fadeInLeft 1s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: #FFD700; /* 노란색으로 변경 */
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: space-between; /* 균등한 간격으로 배치 */
}

.feature-card {
    flex: 1 1 30%;
    min-width: 100px;
    height: 120px; /* 고정 높이 설정 */
    width: 200px; /* 고정 너비 설정 */
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto; /* 중앙 정렬을 위한 마진 설정 */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px; /* 아이콘 크기 통일 */
    height: 60px; /* 아이콘 크기 통일 */
    border-radius: 50%;
    background-color: #1a3569; /* 파란색 배경으로 변경 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon i {
    font-size: 22px;
    color: #ffffff; /* 아이콘 색상을 흰색으로 변경 */
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.center-quote {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.center-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.center-quote p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.story-image-container {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-container:hover .story-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.image-decoration {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 8px solid #FFD700;
    border-radius: 15px;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.3;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FFD700;
    color: #333;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.btn.btn-primary:hover {
    background-color: #333;
    color: #FFD700;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.btn.btn-primary i {
    transition: transform 0.3s ease;
    color: #333;
}

.btn.btn-primary:hover i {
    transform: translateX(5px);
    color: #FFD700;
}

.product-features-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.center-info-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(to right, #ffffff 0%, var(--light-bg) 100%);
}

.center-info-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.center-info-content h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-xxxl);
    font-weight: 700;
}

.center-info-content p {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: var(--font-md);
    font-weight: 500;
}

.center-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.center-info-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: var(--font-sm);
}

.center-info-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.center-info-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.center-info-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

footer {
    background: linear-gradient(to bottom, #2a2a2a, var(--pm-navy));
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    max-height: 120px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-logo p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.footer-links, .footer-contact, .footer-social {
    margin-bottom: var(--spacing-lg);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: var(--font-md);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
    font-weight: 600;
}

.footer-links h3:after, .footer-contact h3:after, .footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-sm);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--font-sm);
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-xs);
    margin: 0;
}

.brand-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    color: var(--primary-color);
    line-height: 1.5;
    font-style: italic;
}

.eco-tag, .eco-friendly-tag {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin: var(--spacing-md) 0;
    font-size: var(--font-md);
}

/* 배너 그리드 스타일 */
.banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.banner-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-highlights.right-highlights {
    margin-top: 20px;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.product-images-set {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images-set .product-image {
    position: absolute;
    max-width: 300px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    animation: none;
}

.product-images-set .product-image-top {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
    z-index: 3;
    max-width: 250px;
}

.product-images-set .product-image-left {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
    z-index: 1;
}

.product-images-set .product-image-right {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
    z-index: 2;
}

.product-images-set .product-image:hover {
    transform: none;
}

.product-images-set .product-image-top:hover {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
}

.product-images-set .product-image-left:hover {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
}

.product-images-set .product-image-right:hover {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
}

.banner-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Added explicit left alignment */
    padding-left: 50px; /* Added left padding */
}

.banner-text h1 {
    font-size: var(--font-huge);
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.banner-description {
    font-size: var(--font-md);
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    font-weight: 400;
    word-spacing: 1px;
}

.banner-description strong {
    font-weight: 700;
    color: var(--text-color);
}

.banner-note {
    font-size: var(--font-sm);
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.product-highlights {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    max-width: 700px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 5px 10px;
    border-right: 1px dashed rgba(0, 0, 0, 0.1);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-icon {
    color: var(--primary-color);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: white;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: var(--text-color);
    line-height: 1.4;
    width: 100%;
}

.highlight-text strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.banner-slogan {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.banner-text .btn {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

.highlight-primary {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.text-accent {
    color: var(--secondary-color);
    font-weight: 600;
}

.highlight-stat {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-keyword {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.highlight-secondary {
    display: inline-block;
    background-color: rgba(29, 61, 121, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.global-presence-strip {
    background: linear-gradient(to right, var(--pm-red), var(--pm-navy));
    padding: 20px 0;
    color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.global-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.stat-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.stat-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.summary-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
    color: white;
    font-size: 24px;
}

.summary-item:nth-child(2) .summary-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.summary-item:nth-child(3) .summary-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

.product-summary {
    padding: 40px 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.summary-item {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.summary-item h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--text-color);
}

.summary-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

.product-text-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.product-text-summary.certification-icons {
    margin: 25px 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-text-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.certification-icons .product-text-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--light-gray);
}

.certification-icons .product-text-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-text-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.certification-icons .product-text-item i {
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.product-text-info {
    display: flex;
    flex-direction: column;
}

.certification-icons .product-text-info strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.certification-icons .product-text-info span {
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--font-sm);
}

.cert-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    object-fit: contain;
}

.banner-feature-item .feature-icon {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.banner-feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.banner-feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

@media (max-width: 768px) {
    .product-images-set {
        height: 500px;
        align-items: center;
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    .banner-right {
        overflow: visible;
        margin-top: 50px;
    }

    /* 인기 제품 카드 모바일 스타일 */
    .product-grid.detailed .product-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-card.expanded .product-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        margin: 0 auto;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 280px;
        margin: 0 auto;
        object-fit: contain;
    }

    .product-highlights {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .highlight-item {
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        padding: 10px 5px;
    }
    
    .highlight-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .product-images-set {
        height: 500px;
        transform: scale(0.9);
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    /* 더 작은 화면에서 인기 제품 이미지 조정 */
    .product-card.expanded .product-image {
        padding: 10px;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-features {
        gap: 12px;
        padding: 20px;
    }
    
    .banner-feature-item {
        gap: 10px;
    }
    
    .banner-feature-item .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .banner-feature-item p {
        font-size: 15px;
    }
    
    .product-text-summary {
        padding: 12px;
        flex-wrap: wrap;
    }
    
    .product-text-item {
        padding: 8px 5px;
        flex-basis: 33%;
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }
    
    .product-text-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .banner-grid {
        gap: 20px;
    }
    
    .banner-right {
        margin-top: 20px;
    }
    
    .cert-logo {
        width: 80px;
    }
    
    .highlight-keyword, .highlight-secondary {
        display: inline;
        padding: 1px 3px;
    }
}

.cert-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.cert-line-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cert-line-item i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cert-text {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.cert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    object-fit: contain;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.autoship-guide-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
}

.guide-item {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    min-width: 200px;
}

.guide-text strong {
    font-size: var(--font-md);
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.guide-text span {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.4;
}

/* 모바일 반응형 적용 */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
}

@media (max-width: 576px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
}

/* 오토십 가입 절차 섹션 */
.signup-process-section {
    width: 100%;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-title {
    text-align: center;
    color: var(--text-color);
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.process-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.signup-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--spacing-lg) 0;
    position: relative;
    flex-wrap: nowrap;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-item:nth-child(1) {
    border-top-color: #ff416c;
    background-color: rgba(255, 65, 108, 0.03);
}

.step-item:nth-child(3) {
    border-top-color: #4364f7;
    background-color: rgba(67, 100, 247, 0.03);
}

.step-item:nth-child(5) {
    border-top-color: #ff5858;
    background-color: rgba(255, 88, 88, 0.03);
}

.step-item:nth-child(7) {
    border-top-color: #38ef7d;
    background-color: rgba(56, 239, 125, 0.03);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 15px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    border: 3px solid transparent;
}

.step-item:nth-child(1) .step-icon {
    color: #ff416c;
    border-color: rgba(255, 75, 43, 0.3);
}

.step-item:nth-child(3) .step-icon {
    color: #4364f7;
    border-color: rgba(30, 144, 255, 0.3);
}

.step-item:nth-child(5) .step-icon {
    color: #ff5858;
    border-color: rgba(240, 152, 25, 0.3);
}

.step-item:nth-child(7) .step-icon {
    color: #38ef7d;
    border-color: rgba(17, 153, 142, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}

/* 각 단계별 다른 색상 적용 */
.step-item:nth-child(1) .step-number {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

.step-item:nth-child(3) .step-number {
    background: linear-gradient(135deg, #1e90ff, #4364f7);
}

.step-item:nth-child(5) .step-number {
    background: linear-gradient(135deg, #f09819, #ff5858);
}

.step-item:nth-child(7) .step-number {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.step-item h4 {
    margin: 10px 0;
    color: var(--text-color);
    font-size: var(--font-md);
    font-weight: 600;
}

.step-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.5;
    margin-bottom: 0;
}

.step-connector {
    height: 2px;
    flex-grow: 0.5;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: relative;
    z-index: 0;
    max-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector:after {
    content: '';
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--secondary-color);
}

.process-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* 오토십 가이드 스타일 */
.guide-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.guide-icon i {
    color: white;
    font-size: 18px;
}

.guide-text {
    display: flex;
    flex-direction: column;
}

.guide-item:nth-child(1) .guide-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.guide-item:nth-child(2) .guide-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.guide-item:nth-child(3) .guide-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.guide-item:nth-child(4) .guide-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

/* 통합된 모바일 반응형 타이포그래피 */
@media (max-width: 992px) {
    .signup-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .step-item {
        width: 100%;
        max-width: 350px;
    }
    
    .step-connector {
        width: 2px;
        height: 30px;
        flex-grow: 0;
        max-width: none;
    }
    
    .step-connector:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid var(--secondary-color);
    }
}

@media (max-width: 768px) {
    /* 기본 타이포그래피 */
    h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    h2 {
        font-size: calc(var(--font-xxxl) * 0.9);
    }
    
    h3 {
        font-size: calc(var(--font-xxl) * 0.9);
    }
    
    .section-title {
        font-size: calc(var(--font-xxxl) * 0.9);
    }
    
    .section-desc {
        font-size: var(--font-sm);
    }
    
    /* 배너 및 하이라이트 */
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
    
    /* 제품, 가이드, 단계 등 텍스트 */
    .product-card p,
    .product-card.expanded .product-description p,
    .autoship-feature p,
    .step-item p,
    .guide-text span {
        font-size: var(--font-sm);
    }
    
    /* 인증 관련 텍스트 */
    .certification-icons .product-text-info span {
        font-size: var(--font-xs);
    }
}

@media (max-width: 576px) {
    body {
        font-size: var(--font-sm);
    }
    
    h1, .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    h2 {
        font-size: calc(var(--font-xxxl) * 0.8);
    }
    
    h3 {
        font-size: calc(var(--font-xxl) * 0.8);
    }
    
    .section-title {
        font-size: calc(var(--font-xxxl) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
    
    /* 작은 화면에서도 버튼 텍스트 가독성 유지 */
    .btn {
        font-size: var(--font-sm);
        padding: 0.8rem 1.5rem;
    }
    
    /* 단계별 요소 텍스트 크기 조정 */
    .step-item h4 {
        font-size: var(--font-sm);
    }
    
    .step-item p {
        font-size: var(--font-xs);
    }
}

/* 센터 페이지 스타일 개선 */
.page-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(var(--pm-red), 0.07) 0%, #ffffff 50%, rgba(var(--pm-navy), 0.07) 100%);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(230, 0, 45, 0.07) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-huge);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-banner p {
    max-width: 700px;
    margin: 0 auto var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    letter-spacing: -0.01em;
}

.center-slogan {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(var(--pm-red), 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    border-radius: 30px;
    margin-top: var(--spacing-sm);
    letter-spacing: -0.01em;
}

/* 센터 소개 섹션 개선 */
.center-intro {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.center-intro .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.intro-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.intro-content p.lead {
    font-size: var(--font-xl);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.intro-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-md);
}

.center-name-tag {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: rgba(var(--pm-navy), 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
}

.center-name {
    font-size: var(--font-xl);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.center-subtitle {
    font-size: var(--font-md);
    color: var(--text-color);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.intro-image:hover img {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* 비전 섹션 개선 */
.vision-intro {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.vision-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.vision-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.vision-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.vision-statement {
    font-size: var(--font-xl);
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    font-style: italic;
}

.vision-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.eco-friendly-statement {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(var(--pm-navy), 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: var(--font-md);
    border-radius: 30px;
    margin-top: var(--spacing-sm);
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

/* 핵심 가치 섹션 개선 */
.core-values {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.values-tagline {
    display: inline-block;
    margin: var(--spacing-md) auto var(--spacing-xl);
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(var(--pm-red), 0.1) 0%, rgba(var(--pm-navy), 0.1) 100%);
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-lg);
    border-radius: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.value-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 5px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-card:nth-child(1) {
    border-top-color: var(--primary-color);
}

.value-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.value-card:nth-child(3) {
    border-top-color: var(--accent-color);
}

.value-card:nth-child(4) {
    border-top-color: #4cd964;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 8px 15px rgba(var(--pm-red), 0.2);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    box-shadow: 0 8px 15px rgba(var(--pm-navy), 0.2);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 8px 15px rgba(255, 206, 84, 0.2);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #4cd964, #8efa7b);
    box-shadow: 0 8px 15px rgba(76, 217, 100, 0.2);
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.value-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* 센터 특징 섹션 개선 */
.center-features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* 시음회 섹션 개선 */
.center-tasting {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.05) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.05) 100%);
}

.tasting-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tasting-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.tasting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.tasting-feature {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.tasting-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tasting-feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.tasting-feature h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
}

.tasting-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.tasting-cta {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tasting-tagline {
    font-size: var(--font-lg);
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* 비전 스토리 섹션 개선 */
.vision-story {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    color: var(--text-color);
    font-size: var(--font-xxxl);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.story-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.story-content p {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-md);
}

/* 인포그래픽 섹션 개선 */
.vision-infographic {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.infographic-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.infographic-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    text-align: center;
}

.infographic-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.infographic-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.infographic-text {
    font-size: var(--font-md);
    color: var(--text-color);
    font-weight: 500;
}

/* 팀 섹션 개선 */
.team-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.member-photo {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: var(--spacing-md);
}

.member-info h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-lg);
    font-weight: 600;
}

.member-position {
    color: var(--primary-color);
    font-size: var(--font-sm);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.member-bio {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.social-links {
    margin-top: var(--spacing-sm);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* 애니메이션 효과 */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .center-intro .container,
    .vision-intro .container,
    .tasting-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .intro-image,
    .vision-image {
        order: -1;
    }
    
    .infographic-item {
        width: 170px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .page-banner p {
        font-size: var(--font-md);
    }
    
    .intro-content p.lead,
    .vision-statement {
        font-size: var(--font-lg);
    }
    
    .intro-content p,
    .vision-content p,
    .story-content p {
        font-size: var(--font-sm);
    }
    
    .center-name {
        font-size: var(--font-lg);
    }
    
    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .infographic-container {
        gap: var(--spacing-md);
    }
    
    .infographic-item {
        width: 140px;
        padding: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .center-slogan,
    .eco-friendly-statement,
    .values-tagline {
        font-size: var(--font-sm);
    }
    
    .infographic-container {
        flex-direction: column;
        align-items: center;
    }
    
    .infographic-item {
        width: 100%;
        max-width: 280px;
    }
}

/* 고객 후기 섹션 스타일 */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
}

.testimonial-avatar i {
    font-size: 28px;
    color: white;
}

.testimonial-user h4 {
    margin: 0;
    font-size: var(--font-md);
    color: var(--text-color);
}

.testimonial-stars {
    color: #ffce54;
    font-size: var(--font-sm);
    margin-top: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-sm);
}

.testimonial-date {
    text-align: right;
    font-size: var(--font-xs);
    color: var(--text-light);
    font-style: italic;
}

/* FAQ 섹션 스타일 */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-bg);
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f0f0f2;
}

.faq-question.active {
    background-color: var(--white);
}

.faq-question h3 {
    margin: 0;
    font-size: var(--font-md);
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: var(--spacing-md);
    margin: 0;
}

/* 가이드 비디오 섹션 스타일 */
.guide-videos {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
}

#youtube-player {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.youtube-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.video-list {
    margin-top: var(--spacing-xl);
}

.video-list h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.video-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.video-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-color-rgb), 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.video-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: var(--spacing-sm);
}

.video-info h4 {
    margin-bottom: 0.5rem;
    font-size: var(--font-md);
}

.video-info p {
    margin-bottom: 0;
    font-size: var(--font-xs);
    color: var(--text-light);
}

/* 팁 섹션 스타일 */
.tips-section {
    padding: var(--spacing-xl) 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.tip-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.tip-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.tip-card p {
    margin-bottom: 0;
    font-size: var(--font-sm);
    color: var(--text-light);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .video-list ul {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    #youtube-player iframe {
        height: 320px;
    }
    
    .youtube-controls {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .video-info h4 {
        font-size: var(--font-sm);
    }
    
    .video-info p {
        font-size: var(--font-xxs);
    }
    
    #youtube-player iframe {
        height: 240px;
    }
    
    .tip-card {
        padding: var(--spacing-md);
    }
}

/* PM 인터내셔널 소개 페이지 스타일 */
.about-intro {
    background-color: #f8fafc;
    padding: 80px 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-content h2 {
    font-size: var(--font-xxl);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-content .lead {
    font-size: var(--font-lg);
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image {
    position: relative;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: var(--font-xs);
}

.certification-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.certification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.certification-text p {
    font-size: var(--font-md);
    margin-bottom: 30px;
    line-height: 1.7;
}

.certification-logos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cert-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.certification-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-for-all-section {
    background: linear-gradient(to right, #f0f5fa, #e6f0ff);
    padding: 80px 0;
}

.product-for-all-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-for-all-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-for-all-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.founding-story-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.founding-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.founding-story-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.founding-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 3px solid #1a5aad;
}

.timeline-year {
    background-color: #1a5aad;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content {
    font-size: var(--font-md);
    color: var(--text-color);
}

.ntc-technology-section {
    background-color: #f0f7f3;
    padding: 80px 0;
}

.ntc-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.ntc-image {
    display: flex;
    justify-content: center;
}

.ntc-logo {
    max-width: 250px;
    height: auto;
}

.ntc-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-highlight-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.product-highlight-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-highlight-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-highlight-image img {
    max-height: 100%;
    max-width: 100%;
}

.product-highlight-item h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-highlight-item p {
    font-size: var(--font-md);
    color: var(--text-light);
}

.business-opportunity-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.business-opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.business-opportunity-text p {
    font-size: var(--font-md);
    margin-bottom: 20px;
    line-height: 1.7;
}

.business-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.business-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(26, 90, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 24px;
    color: #1a5aad;
}

.step-text {
    flex: 1;
}

.step-text h4 {
    font-size: var(--font-md);
    color: var(--text-color);
    margin-bottom: 10px;
}

.step-text p {
    font-size: var(--font-sm);
    color: var(--text-light);
    margin-bottom: 0;
}

.social-contribution-section {
    background-color: #f0f7f3;
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

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

.contribution-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.contribution-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.contribution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(26, 90, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contribution-icon i {
    font-size: 36px;
    color: #1a5aad;
}

.contribution-item h3 {
    font-size: var(--font-lg);
    color: var(--text-color);
    margin-bottom: 15px;
}

.contribution-item p {
    font-size: var(--font-md);
    color: var(--text-light);
    margin-bottom: 0;
}

.global-presence-section {
    background: linear-gradient(to bottom, #f3f8ff, #e6f0ff);
    padding: 80px 0;
}

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

.global-stat-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.global-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: var(--font-huge);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: var(--font-md);
    color: var(--text-color);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2b5b 0%, #1a5aad 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--font-xxl);
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: var(--font-lg);
    color: #fff;
    margin-bottom: 30px;
}

.cta-content .btn {
    font-size: var(--font-md);
    padding: 15px 40px;
}

@media (max-width: 992px) {
    .about-intro .container,
    .certification-content,
    .product-for-all-content,
    .founding-story-content,
    .ntc-content,
    .business-opportunity-content {
        grid-template-columns: 1fr;
    }
    
    .product-highlight-grid,
    .contribution-grid,
    .global-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-image {
        margin-top: 30px;
    }
    
    .certification-image,
    .product-for-all-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .product-highlight-grid,
    .contribution-grid,
    .global-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* 회사 소개 페이지 배너 배지 */
.banner-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    animation: fadeIn 1s ease-in-out;
}

.banner-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.banner-badge:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.banner-badge i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: #8cddfd;
}

/* 회사 가치 태그 */
.company-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.value-tag {
    background-color: rgba(15, 43, 91, 0.1);
    color: #0f2b5b;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.value-tag i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: #1a5aad;
}

.value-tag:hover {
    background-color: rgba(15, 43, 91, 0.2);
    transform: translateY(-2px);
}

/* 제품 카테고리 */
.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.product-category {
    background-color: #f7f9fc;
    color: #1a3569;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-category i {
    margin-right: 10px;
    color: #1a5aad;
    font-size: 1.1rem;
}

.product-category:hover {
    background-color: #e9f0f7;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* NTC 혜택 표시 */
.ntc-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.ntc-benefit {
    background-color: #f0f5fa;
    border-left: 3px solid #1a5aad;
    padding: 12px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ntc-benefit i {
    margin-right: 12px;
    color: #1a5aad;
    font-size: 1.2rem;
}

.ntc-benefit span {
    font-weight: 500;
    color: #1a3569;
}

.ntc-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #e9f0f7;
}

/* 글로벌 리더십과 비전 섹션 */
.leadership-vision-section {
    background: linear-gradient(to right, #f3f8ff, #e8f4ff);
    padding: 80px 0;
}

.leadership-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.leadership-image {
    flex: 1 1 350px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.leadership-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.leadership-image:hover img {
    transform: scale(1.05);
}

.leadership-text {
    flex: 1 1 500px;
}

.leadership-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333333;
}

.vision-pillars {
    margin-top: 30px;
}

.vision-pillar {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vision-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f4ff;
    border-radius: 50%;
    margin-right: 15px;
}

.pillar-icon i {
    font-size: 1.3rem;
    color: #1a5aad;
}

.pillar-text {
    flex: 1;
}

.pillar-text h4 {
    margin: 0 0 5px;
    color: #1a5aad;
    font-weight: 600;
    font-size: 1.1rem;
}

.pillar-text p {
    margin: 0;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 비즈니스 통계 */
.business-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.business-stat {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 150px;
    background-color: #f0f5fa;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.business-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #e9f0f7;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5aad;
    margin-bottom: 5px;
}

.stat-desc {
    color: #555555;
    font-size: 0.95rem;
}

/* 인용구 스타일 */
.contribution-quote {
    position: relative;
    background-color: #f7f9fc;
    border-left: 5px solid #1a5aad;
    margin: 40px 0 20px;
    padding: 30px 30px 30px 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contribution-quote i {
    position: absolute;
    left: 20px;
    top: 30px;
    font-size: 1.5rem;
    color: #1a5aad;
    opacity: 0.5;
}

.contribution-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #333333;
}

.contribution-quote span {
    display: block;
    text-align: right;
    font-weight: 600;
    color: #1a5aad;
}

/* 글로벌 맵 */
.global-map {
    background-color: rgba(26, 90, 173, 0.05);
    padding: 20px;
}

.world-map {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.global-map:hover .world-map {
    transform: scale(1.05);
}

/* CTA 버튼 그룹 */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* About 페이지 배너 */
.about-banner {
    background: linear-gradient(135deg, #0f2b5b 0%, #1a5aad 100%);
}

/* 반응형 조정 */
@media (max-width: 992px) {
    .leadership-content, 
    .ntc-content, 
    .business-opportunity-content {
        flex-direction: column;
    }
    
    .leadership-image, 
    .ntc-image {
        margin-bottom: 30px;
    }
    
    .banner-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .banner-badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .value-tag, 
    .product-category {
        font-size: 0.85rem;
    }
    
    .ntc-benefit {
        flex: 1 1 100%;
    }
    
    .vision-pillar {
        padding: 15px;
    }
    
    .pillar-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .business-stat {
        flex: 1 1 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .banner-badges {
        margin-top: 20px;
        gap: 10px;
    }
    
    .banner-badge {
        width: 100%;
        justify-content: center;
    }
    
    .contribution-quote {
        padding: 25px 20px 25px 40px;
    }
    
    .contribution-quote i {
        font-size: 1.2rem;
        left: 15px;
        top: 25px;
    }
}

/* 각 섹션별 물결 구분선 */
.product-for-all-section::after,
.ntc-technology-section::after,
.leadership-vision-section::after,
.social-contribution-section::after {
    content: '';
    display: block;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff" /></svg>');
    background-size: cover;
    background-position: center;
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

/* 섹션 간 일관된 패딩 */
.about-intro,
.certification-section,
.product-for-all-section,
.founding-story-section,
.ntc-technology-section,
.leadership-vision-section,
.business-opportunity-section,
.social-contribution-section,
.global-presence-section,
.cta-section {
    padding: 100px 0;
}

/* 글로벌 맵 스타일 복원 및 업데이트 */
.global-map {
    margin: 30px 0;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(26, 90, 173, 0.05);
    padding: 20px;
}

/* 카드 섹션 요소 그림자 효과 */
.vision-pillar, 
.business-stat, 
.contribution-item, 
.global-stat-item {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vision-pillar:hover, 
.business-stat:hover, 
.contribution-item:hover, 
.global-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-intro,
    .certification-section,
    .product-for-all-section,
    .founding-story-section,
    .ntc-technology-section,
    .leadership-vision-section,
    .business-opportunity-section,
    .social-contribution-section,
    .global-presence-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .product-for-all-section::after,
    .ntc-technology-section::after,
    .leadership-vision-section::after,
    .social-contribution-section::after {
        height: 30px;
        margin-top: -30px;
    }
}

/* 노란색 테마 강화 */
.story-section {
    background-color: #fffdf5;
}

.story-content h2 {
    color: #333;
}

.story-section .btn.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FFD700;
    color: #333;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.story-section .btn.btn-primary:hover {
    background-color: #333;
    color: #FFD700;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.story-section .btn.btn-primary i {
    transition: transform 0.3s ease;
    color: #333;
}

.story-section .btn.btn-primary:hover i {
    transform: translateX(5px);
    color: #FFD700;
}

.btn.btn-primary span {
    margin-right: 10px;
}

/* 제주센터 소개 페이지를 위한 CSS 개선 - 2025년 4월 */

/* 섹션 배지 스타일 */
.section-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 제목 라인 스타일 */
.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* 섹션 부제목 스타일 */
.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* 히어로 배너 스타일 */
.hero-banner {
    position: relative;
    padding: 8rem 0;
    background-image: url('../images/FullScreenPicture2-1920x0.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 61, 121, 0.9), rgba(29, 61, 121, 0.7));
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto 0 0; /* Changed from "margin: 0 auto;" to align left */
    text-align: left; /* Added explicit left alignment */
    padding-left: 50px; /* Added left padding */
}

.banner-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: 0; /* Changed from auto to 0 */
    margin-right: auto;
    line-height: 1.6;
}

.banner-features {
    display: flex;
    justify-content: flex-start; /* Changed from "center" to "flex-start" */
    gap: 2rem;
    margin-bottom: 3rem;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.banner-cta {
    display: flex;
    justify-content: flex-start; /* Changed from "center" to "flex-start" */
    gap: 1rem;
    margin-top: 2rem;
}

.banner-cta .btn {
    min-width: 180px;
}

/* 센터 소개 섹션 스타일 */
.center-intro {
    padding: 6rem 0;
    background-color: #fff;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.intro-content {
    padding-right: 2rem;
}

.intro-content .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.intro-quote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.intro-quote i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.intro-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intro-feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.intro-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.02);
}

.intro-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 2rem 1.5rem 1rem;
    font-size: 0.9rem;
}

/* 센터 운영 안내 스타일 */
.center-info-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.center-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.center-info-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-card-icon i {
    font-size: 1.8rem;
}

.center-info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.center-info-card p {
    color: #555;
    margin-bottom: 0;
}

.center-info-image-gallery {
    margin-bottom: 4rem;
}

.gallery-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.gallery-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.center-info-cta {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #555;
    font-size: 0.95rem;
}

.cta-contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* 센터 특징 섹션 스타일 */
.center-features {
    padding: 6rem 0;
    background-color: #fff;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
}

.feature-card-icon i {
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #555;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.feature-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 0.8rem;
}

.features-highlight {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 0;
}

.highlight-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
}

.highlight-logo {
    width: 100%;
    padding: 2rem;
    background-color: #fff;
    display: block;
}

.highlight-text {
    padding: 3rem;
}

.highlight-text h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.highlight-text p {
    margin-bottom: 1.5rem;
}

/* 제품 갤러리 섹션 스타일 */
.product-gallery {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(230, 0, 45, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--spacing-md) var(--spacing-lg);
}

.product-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-title i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-title strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.product-desc {
    display: block;
    color: var(--text-color);
    font-size: 15px;
    padding-left: 38px;
    line-height: 1.4;
    margin-top: 2px;
}

.product-card p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.product-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-md);
}

.product-benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.product-benefits-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-benefits-list li i {
    color: white;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.product-grid.detailed .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-grid.detailed .product-card .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-card.expanded {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-card.expanded .product-image {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card.expanded .product-image img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.product-card.expanded .product-image img:hover {
    transform: scale(1.05);
}

.product-card.expanded .product-content {
    flex: 1;
    padding: var(--spacing-lg);
}

.product-card.expanded h3 {
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card.expanded .product-tagline {
    margin-bottom: var(--spacing-md);
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(230, 0, 45, 0.2);
}

.product-card.expanded .product-description p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    line-height: 1.6;
    font-size: var(--font-sm);
}

.autoship-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        #ffffff 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
}

.autoship-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.autoship-top-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.autoship-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.autoship-lead {
    font-size: var(--font-lg);
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.7;
    text-align: left;
}

.autoship-cta {
    width: 100%;
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(29, 61, 121, 0.15);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autoship-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 61, 121, 0.2);
}

.autoship-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.autoship-feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.autoship-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.autoship-feature .feature-icon {
    background-color: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
}

.autoship-feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
    box-shadow: 0 8px 20px rgba(29, 61, 121, 0.15);
}

.autoship-feature h3 {
    font-size: var(--font-lg);
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.autoship-feature h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.autoship-feature p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.autoship-feature p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 이미지 관련 CSS 주석 처리
.autoship-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.autoship-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
*/

.autoship-cta h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.autoship-cta h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.autoship-instructions {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.autoship-instructions li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.autoship-instructions li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.autoship-cta .btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

.story-section {
    padding: 100px 0;
    background-color: #fffdf5; /* 노란색 계열 배경색으로 변경 */
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjRkZENzAwIiBvcGFjaXR5PSIwLjA1Ij48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.story-content {
    flex: 0 0 45%;
    max-width: 45%;
    animation: fadeInLeft 1s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: #FFD700; /* 노란색으로 변경 */
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: space-between; /* 균등한 간격으로 배치 */
}

.feature-card {
    flex: 1 1 30%;
    min-width: 100px;
    height: 120px; /* 고정 높이 설정 */
    width: 200px; /* 고정 너비 설정 */
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto; /* 중앙 정렬을 위한 마진 설정 */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px; /* 아이콘 크기 통일 */
    height: 60px; /* 아이콘 크기 통일 */
    border-radius: 50%;
    background-color: #1a3569; /* 파란색 배경으로 변경 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon i {
    font-size: 22px;
    color: #ffffff; /* 아이콘 색상을 흰색으로 변경 */
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.center-quote {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.center-quote i {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.center-quote p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.story-image-container {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-container:hover .story-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.image-decoration {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 8px solid #FFD700;
    border-radius: 15px;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.3;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FFD700;
    color: #333;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.btn.btn-primary:hover {
    background-color: #333;
    color: #FFD700;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.btn.btn-primary i {
    transition: transform 0.3s ease;
    color: #333;
}

.btn.btn-primary:hover i {
    transform: translateX(5px);
    color: #FFD700;
}

.product-features-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.center-info-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(to right, #ffffff 0%, var(--light-bg) 100%);
}

.center-info-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.center-info-content h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-xxxl);
    font-weight: 700;
}

.center-info-content p {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: var(--font-md);
    font-weight: 500;
}

.center-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.center-info-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: var(--font-sm);
}

.center-info-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.center-info-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.center-info-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

footer {
    background: linear-gradient(to bottom, #2a2a2a, var(--pm-navy));
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    max-height: 120px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-logo p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.footer-links, .footer-contact, .footer-social {
    margin-bottom: var(--spacing-lg);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: var(--font-md);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
    font-weight: 600;
}

.footer-links h3:after, .footer-contact h3:after, .footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-sm);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--font-sm);
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-xs);
    margin: 0;
}

.brand-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    color: var(--primary-color);
    line-height: 1.5;
    font-style: italic;
}

.eco-tag, .eco-friendly-tag {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin: var(--spacing-md) 0;
    font-size: var(--font-md);
}

/* 배너 그리드 스타일 */
.banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.banner-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-highlights.right-highlights {
    margin-top: 20px;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.product-images-set {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images-set .product-image {
    position: absolute;
    max-width: 300px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    animation: none;
}

.product-images-set .product-image-top {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
    z-index: 3;
    max-width: 250px;
}

.product-images-set .product-image-left {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
    z-index: 1;
}

.product-images-set .product-image-right {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
    z-index: 2;
}

.product-images-set .product-image:hover {
    transform: none;
}

.product-images-set .product-image-top:hover {
    transform: translateX(0%) translateY(0%) rotate(-8deg);
}

.product-images-set .product-image-left:hover {
    transform: translateX(-20%) translateY(65%) rotate(5deg);
}

.product-images-set .product-image-right:hover {
    transform: translateX(45%) translateY(45%) rotate(-3deg);
}

.banner-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Added explicit left alignment */
    padding-left: 50px; /* Added left padding */
}

.banner-text h1 {
    font-size: var(--font-huge);
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.banner-description {
    font-size: var(--font-md);
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    font-weight: 400;
    word-spacing: 1px;
}

.banner-description strong {
    font-weight: 700;
    color: var(--text-color);
}

.banner-note {
    font-size: var(--font-sm);
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.product-highlights {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    max-width: 700px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 5px 10px;
    border-right: 1px dashed rgba(0, 0, 0, 0.1);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-icon {
    color: var(--primary-color);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: white;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: var(--text-color);
    line-height: 1.4;
    width: 100%;
}

.highlight-text strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.banner-slogan {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.banner-text .btn {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

.highlight-primary {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.text-accent {
    color: var(--secondary-color);
    font-weight: 600;
}

.highlight-stat {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-keyword {
    display: inline-block;
    background-color: rgba(230, 0, 45, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.highlight-secondary {
    display: inline-block;
    background-color: rgba(29, 61, 121, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.global-presence-strip {
    background: linear-gradient(to right, var(--pm-red), var(--pm-navy));
    padding: 20px 0;
    color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.global-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.stat-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.stat-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.summary-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
    color: white;
    font-size: 24px;
}

.summary-item:nth-child(2) .summary-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.summary-item:nth-child(3) .summary-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

.product-summary {
    padding: 40px 0;
    background: linear-gradient(135deg, 
        rgba(var(--pm-red), 0.03) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(var(--pm-navy), 0.03) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.summary-item {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.summary-item h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--text-color);
}

.summary-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

.product-text-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.product-text-summary.certification-icons {
    margin: 25px 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-text-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.certification-icons .product-text-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--light-gray);
}

.certification-icons .product-text-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-text-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.certification-icons .product-text-item i {
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.product-text-info {
    display: flex;
    flex-direction: column;
}

.certification-icons .product-text-info strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-md);
}

.certification-icons .product-text-info span {
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--font-sm);
}

.cert-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    object-fit: contain;
}

.banner-feature-item .feature-icon {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-red), var(--primary-light));
}

.banner-feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--pm-navy), var(--secondary-light));
}

.banner-feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--pm-red), var(--pm-navy));
}

@media (max-width: 768px) {
    .product-images-set {
        height: 500px;
        align-items: center;
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    .banner-right {
        overflow: visible;
        margin-top: 50px;
    }

    /* 인기 제품 카드 모바일 스타일 */
    .product-grid.detailed .product-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-card.expanded .product-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        margin: 0 auto;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 280px;
        margin: 0 auto;
        object-fit: contain;
    }

    .product-highlights {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .highlight-item {
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        padding: 10px 5px;
    }
    
    .highlight-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .product-images-set {
        height: 500px;
        transform: scale(0.9);
    }
    
    .product-images-set .product-image {
        max-width: 250px;
    }
    
    .product-images-set .product-image-top {
        transform: translateX(0%) translateY(0%) rotate(-8deg);
    }
    
    .product-images-set .product-image-left {
        transform: translateX(-20%) translateY(65%) rotate(5deg);
    }
    
    .product-images-set .product-image-right {
        transform: translateX(45%) translateY(45%) rotate(-3deg);
    }

    /* 더 작은 화면에서 인기 제품 이미지 조정 */
    .product-card.expanded .product-image {
        padding: 10px;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .product-card.expanded .product-image img {
        width: 100%;
        max-width: 100%;
        max-height: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-features {
        gap: 12px;
        padding: 20px;
    }
    
    .banner-feature-item {
        gap: 10px;
    }
    
    .banner-feature-item .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .banner-feature-item p {
        font-size: 15px;
    }
    
    .product-text-summary {
        padding: 12px;
        flex-wrap: wrap;
    }
    
    .product-text-item {
        padding: 8px 5px;
        flex-basis: 33%;
        border-right: none;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }
    
    .product-text-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .banner-grid {
        gap: 20px;
    }
    
    .banner-right {
        margin-top: 20px;
    }
    
    .cert-logo {
        width: 80px;
    }
    
    .highlight-keyword, .highlight-secondary {
        display: inline;
        padding: 1px 3px;
    }
}

.cert-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.cert-line-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cert-line-item i {
    color: white;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cert-text {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.cert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    object-fit: contain;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.autoship-guide-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
}

.guide-item {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    min-width: 200px;
}

.guide-text strong {
    font-size: var(--font-md);
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.guide-text span {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.4;
}

/* 모바일 반응형 적용 */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.9);
    }
    
    .banner-description {
        font-size: var(--font-sm);
    }
    
    .banner-note, 
    .banner-slogan {
        font-size: var(--font-sm);
    }
    
    .highlight-text strong {
        font-size: var(--font-sm);
    }
}

@media (max-width: 576px) {
    .banner-text h1 {
        font-size: calc(var(--font-huge) * 0.8);
    }
    
    .guide-text span {
        font-size: var(--font-xs);
    }
}

/* 오토십 가입 절차 섹션 */
.signup-process-section {
    width: 100%;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-title {
    text-align: center;
    color: var(--text-color);
    font-size: var(--font-xxl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.process-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.signup-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--spacing-lg) 0;
    position: relative;
    flex-wrap: nowrap;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-item:nth-child(1) {
    border-top-color: #ff416c;
    background-color: rgba(255, 65, 108, 0.03);
}

.step-item:nth-child(3) {
    border-top-color: #4364f7;
    background-color: rgba(67, 100, 247, 0.03);
}

.step-item:nth-child(5) {
    border-top-color: #ff5858;
    background-color: rgba(255, 88, 88, 0.03);
}

.step-item:nth-child(7) {
    border-top-color: #38ef7d;
    background-color: rgba(56, 239, 125, 0.03);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 15px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    border: 3px solid transparent;
}

.step-item:nth-child(1) .step-icon {
    color: #ff416c;
    border-color: rgba(255, 75, 43, 0.3);
}

.step-item:nth-child(3) .step-icon {
    color: #4364f7;
    border-color: rgba(30, 144, 255, 0.3);
}

.step-item:nth-child(5) .step-icon {
    color: #ff5858;
    border-color: rgba(240, 152, 25, 0.3);
}

.step-item:nth-child(7) .step-icon {
    color: #38ef7d;
    border-color: rgba(17, 153, 142, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}

/* 각 단계별 다른 색상 적용 */
.step-item:nth-child(1) .step-number {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

.step-item:nth-child(3) .step-number {
    background: linear-gradient(135deg, #1e90ff, #4364f7);
}

.step-item:nth-child(5) .step-number {
    background: linear-gradient(135deg, #f09819, #ff5858);
}

.step-item:nth-child(7) .step-number {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.step-item h4 {
    margin: 10px 0;
    color: var(--text-color);
    font-size: var(--font-md);
    font-weight: 600;
}

.step-item p {
    color: var(--text-color);
    font-size: var(--font-sm);
    line-height: 1.5;
    margin-bottom: 0;
}

.step-connector {
    height: 2px;
    flex-grow: 0.5;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: relative;
    z-index: 0;
    max-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector:after {
    content: '';
    position: absolute;
    right: 0;
    width: 0;