/* 전역 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gold-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --rose-gradient: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%);
    --pink-light: #ffd1dc;
    --pink-medium: #ffb6c1;
    --purple-light: #ffe6f0;
    --gold: #d4af37;
    --rose-gold: #b76e79;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: #f8f9fa;
    padding-top: 80px;
}

/* 헤더 네비게이션 */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 250, 0.98));
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
    color: #ff6b9d;
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* 드롭다운 메뉴 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 250, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px;
    margin: 8px 0 0 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 157, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    transform: translateX(5px);
}

/* 헤더 연락처 */
.header-contact {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* 모바일 메뉴 토글 버튼 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* 헤더 스크롤 효과 */
.main-header.scrolled {
    height: 70px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.main-header.scrolled .logo a {
    font-size: 1.6rem;
}

/* 배경 이미지 */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            135deg,
            rgba(255, 182, 193, 0.15) 0%,
            rgba(230, 230, 250, 0.15) 50%,
            rgba(255, 209, 220, 0.15) 100%
        ),
        url('img/ay1.png') center/cover no-repeat fixed;
    z-index: -1;
    filter: brightness(1.1);
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    z-index: 1;
}

/* 배너 스타일 */
.banner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    padding: 0;
    transition: all 0.3s ease;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.banner-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0 0 30px 30px;
    opacity: 0.35;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 182, 193, 0.4) 30%,
        rgba(230, 230, 250, 0.4) 60%,
        rgba(255, 209, 220, 0.5) 100%
    );
    border-radius: 0 0 30px 30px;
    pointer-events: none;
}

/* 배너 텍스트 오버레이 */
.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    z-index: 10;
    padding: 40px 20px;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.banner-subtitle {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.9);
}

.banner-description {
    margin-bottom: 40px;
}

.banner-description p {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 15px 0;
    line-height: 2;
    font-weight: 500;
    text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.8);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.banner-feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.banner-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 182, 193, 0.6);
}

.banner-feature-item .feature-icon {
    font-size: 2rem;
}

.header-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px 20px;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-phone {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.btn-kakao {
    background: linear-gradient(135deg, #ffd60a 0%, #ffc300 100%);
    color: #3c1e1e;
}

.btn-kakao:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 214, 10, 0.4);
}

.btn-contact .icon {
    font-size: 1.4rem;
}

/* 메인 컨테이너 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 섹션 공통 스타일 */
.section {
    margin-bottom: 100px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: var(--rose-gradient);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.title-underline::after {
    content: '✨';
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 300;
}

/* 소개 섹션 */
.intro-section {
    scroll-margin-top: 100px;
}

.intro-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 182, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rose-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.intro-card:hover::before {
    opacity: 0.1;
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(255, 182, 193, 0.5);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.intro-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.intro-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* 가격 섹션 */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(230, 230, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-card:hover::before {
    opacity: 0.08;
}

.price-card.featured {
    transform: scale(1.05);
    border: 3px solid;
    border-image: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-image-slice: 1;
}

.price-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--secondary-gradient);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.price-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
    z-index: 1;
}

.price-badge {
    display: inline-block;
    background: var(--rose-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.price-amount {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
    vertical-align: top;
}

.amount {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-features {
    list-style: none;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-notice {
    text-align: center;
    background: var(--gold-gradient);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.price-notice p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* 서비스 섹션 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 50px 35px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 107, 157, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-strong);
    border-color: rgba(255, 107, 157, 0.4);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* 푸터 */
.footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    padding: 50px 20px 30px;
    text-align: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.btn-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-footer:hover::before {
    left: 100%;
}

.btn-phone-footer {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
}

.btn-phone-footer:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.5);
}

.btn-kakao-footer {
    background: linear-gradient(135deg, #ffd60a 0%, #ffc300 100%);
    color: #3c1e1e;
}

.btn-kakao-footer:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 214, 10, 0.5);
}

.btn-footer .icon {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.btn-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-number,
.btn-id {
    font-size: 1.1rem;
    font-weight: 700;
}

/* 사업자 정보 */
.footer-business {
    margin: 40px auto;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5), rgba(255, 250, 240, 0.5));
    padding: 35px 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 182, 193, 0.2);
}

.footer-business h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.business-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.business-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* 푸터 링크 */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-links a:hover {
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
}

.footer-links .divider {
    color: rgba(0, 0, 0, 0.2);
    margin: 0 5px;
}

/* 푸터 정보 */
.footer-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.footer-info p {
    color: var(--text-light);
    margin: 10px 0;
    font-size: 0.95rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.9rem !important;
    color: #c44569 !important;
    font-weight: 600;
    line-height: 1.8;
}

.footer-keywords {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    opacity: 0.7;
    font-weight: 400;
    padding: 15px 0;
}

.footer-copyright {
    font-size: 0.9rem !important;
    opacity: 0.7;
    margin-top: 15px !important;
    font-weight: 500;
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    margin: 3% auto;
    padding: 0;
    border: 3px solid rgba(255, 107, 157, 0.3);
    border-radius: 25px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 25px 35px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 22px 22px 0 0;
}

.modal-close {
    color: white;
    float: right;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

.modal-body {
    padding: 35px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
}

.modal-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c44569;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* 모달 스크롤바 */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 182, 193, 0.1);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c44569 0%, #ff6b9d 100%);
}

/* 헤더 반응형 */
@media (max-width: 1024px) {
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    .header-phone {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .header-container {
        height: 70px;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 250, 0.98));
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-menu.active {
        max-height: 600px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 182, 193, 0.2);
    }

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

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 240, 245, 0.5);
        margin: 0;
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px;
    }

    .dropdown-menu a {
        padding: 10px 15px;
    }

    .header-contact {
        display: none;
    }
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 50px 30px;
    }

    .banner-content {
        min-height: 500px;
    }

    .banner-text-overlay {
        padding: 35px 20px;
    }

    .banner-title {
        font-size: 3.5rem;
    }

    .banner-subtitle {
        font-size: 1.6rem;
    }

    .banner-description p {
        font-size: 1.2rem;
    }

    .banner-features {
        gap: 18px;
    }

    .banner-feature-item {
        font-size: 1.1rem;
        padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }

    .section {
        padding: 40px 25px;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .banner-content img {
        border-radius: 0 0 20px 20px;
    }

    .header-buttons {
        padding: 20px 15px;
    }

    .btn-contact {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .banner-content {
        min-height: 550px;
    }

    .banner-text-overlay {
        padding: 40px 20px;
        width: 95%;
    }

    .banner-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .banner-subtitle {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .banner-description {
        margin-bottom: 30px;
    }

    .banner-description p {
        font-size: 1.15rem;
        margin: 12px 0;
    }

    .banner-features {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .banner-feature-item {
        padding: 20px 15px;
        font-size: 1.05rem;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
    }

    .banner-feature-item .feature-icon {
        font-size: 1.8rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-card {
        padding: 30px 25px;
    }

    .intro-card h3 {
        font-size: 1.4rem;
    }

    .intro-card p {
        font-size: 1rem;
    }

    .price-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .amount {
        font-size: 2.3rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-footer {
        min-width: 240px;
        padding: 16px 30px;
    }

    .btn-footer .icon {
        font-size: 1.8rem;
    }

    .btn-number,
    .btn-id {
        font-size: 1rem;
    }

    .footer-business {
        padding: 30px 25px;
    }

    .footer-business h3 {
        font-size: 1.3rem;
    }

    .business-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .business-info p {
        font-size: 0.9rem;
    }

    .footer-links {
        padding: 20px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        padding: 20px 25px;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-body h3 {
        font-size: 1.2rem;
    }

    .modal-body p, .modal-body li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }

    .section {
        border-radius: 25px;
        padding: 30px 20px;
    }

    .banner-content img {
        border-radius: 0 0 15px 15px;
    }

    .btn-contact {
        padding: 12px 25px;
        font-size: 0.95rem;
        min-width: 140px;
    }

    .btn-contact .icon {
        font-size: 1.2rem;
    }

    .banner-content {
        min-height: 500px;
    }

    .banner-text-overlay {
        padding: 35px 15px;
        width: 95%;
    }

    .banner-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        margin-bottom: 15px;
    }

    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .banner-description {
        margin-bottom: 25px;
    }

    .banner-description p {
        font-size: 1.05rem;
        margin: 10px 0;
    }

    .banner-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .banner-feature-item {
        padding: 18px 15px;
        font-size: 1rem;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
    }

    .banner-feature-item .feature-icon {
        font-size: 1.6rem;
    }

    .card-icon,
    .service-icon {
        font-size: 3rem;
    }

    .price-badge {
        font-size: 1.1rem;
        padding: 10px 25px;
    }

    .amount {
        font-size: 2rem;
    }

    .price-notice p {
        font-size: 1.1rem;
    }

    .btn-footer {
        min-width: 100%;
        padding: 15px 25px;
        gap: 12px;
    }

    .btn-footer .icon {
        font-size: 1.6rem;
    }

    .btn-number,
    .btn-id {
        font-size: 0.95rem;
    }

    .footer-business {
        padding: 25px 20px;
    }

    .footer-business h3 {
        font-size: 1.2rem;
    }

    .business-info p {
        font-size: 0.85rem;
    }

    .footer-links {
        padding: 15px;
        gap: 8px;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 4px 8px;
    }

    .footer-info p {
        font-size: 0.85rem;
    }

    .footer-keywords {
        font-size: 0.8rem !important;
    }

    .modal-content {
        width: 98%;
        margin: 8% auto;
    }

    .modal-content h2 {
        font-size: 1.3rem;
        padding: 18px 20px;
    }

    .modal-close {
        font-size: 2rem;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-body h3 {
        font-size: 1.1rem;
    }

    .modal-body p, .modal-body li {
        font-size: 0.9rem;
    }
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* 스크롤바 스타일 */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #ffd1dc 0%, #e6e6fa 100%);
}

::-webkit-scrollbar-thumb {
    background: var(--rose-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* 추가 장식 효과 */
.section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--rose-gradient);
    border-radius: 40px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section:hover::before {
    opacity: 0.03;
}

/* 여성 고객 만족도 섹션 */
.satisfaction-content {
    max-width: 800px;
    margin: 0 auto;
}

.satisfaction-main {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.8), rgba(255, 250, 240, 0.8));
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.satisfaction-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.satisfaction-main h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.satisfaction-main p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.satisfaction-notice {
    background: rgba(255, 107, 157, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #ff6b9d;
    font-weight: 600;
    color: #c44569 !important;
    margin-top: 30px !important;
}

/* 특별 서비스 섹션 */
.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.special-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 250, 0.9));
    padding: 45px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 182, 193, 0.3);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(196, 69, 105, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.special-card:hover::before {
    opacity: 1;
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 157, 0.6);
}

.special-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    z-index: 1;
}

.special-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.special-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.special-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* 안양 로컬 섹션 */
.local-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.local-card {
    background: linear-gradient(135deg, rgba(255, 250, 245, 0.9), rgba(255, 245, 250, 0.9));
    padding: 45px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 182, 193, 0.25);
    transition: all 0.4s ease;
}

.local-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 157, 0.5);
}

.local-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.local-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.local-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 15px;
}

.local-footer {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.7), rgba(255, 250, 240, 0.7));
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.local-footer p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.local-thanks {
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem !important;
    margin-bottom: 0 !important;
}

/* 새 섹션 반응형 */
@media (max-width: 768px) {
    .satisfaction-main {
        padding: 35px 25px;
    }

    .satisfaction-main h3 {
        font-size: 1.6rem;
    }

    .satisfaction-main p {
        font-size: 1.05rem;
    }

    .special-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .special-card {
        padding: 35px 25px;
    }

    .special-card h3 {
        font-size: 1.4rem;
    }

    .special-card p {
        font-size: 1rem;
    }

    .local-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .local-card {
        padding: 35px 25px;
    }

    .local-card h3 {
        font-size: 1.5rem;
    }

    .local-card p {
        font-size: 1rem;
    }

    .local-footer {
        padding: 30px 25px;
    }

    .local-footer p {
        font-size: 1.05rem;
    }

    .local-thanks {
        font-size: 1.15rem !important;
    }
}

@media (max-width: 480px) {
    .satisfaction-main {
        padding: 30px 20px;
    }

    .satisfaction-icon {
        font-size: 3.5rem;
    }

    .satisfaction-main h3 {
        font-size: 1.4rem;
    }

    .satisfaction-main p {
        font-size: 1rem;
    }

    .satisfaction-notice {
        padding: 15px;
        font-size: 0.95rem;
    }

    .special-card {
        padding: 30px 20px;
    }

    .special-icon {
        font-size: 3.5rem;
    }

    .special-card h3 {
        font-size: 1.3rem;
    }

    .special-card p {
        font-size: 0.95rem;
    }

    .special-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .local-card {
        padding: 30px 20px;
    }

    .local-icon {
        font-size: 3rem;
    }

    .local-card h3 {
        font-size: 1.3rem;
    }

    .local-card p {
        font-size: 0.95rem;
    }

    .local-footer {
        padding: 25px 20px;
    }

    .local-footer p {
        font-size: 1rem;
    }

    .local-thanks {
        font-size: 1.1rem !important;
    }
}

/* 지도 섹션 */
.map-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.9), rgba(255, 250, 245, 0.9));
    padding: 35px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 182, 193, 0.3);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 157, 0.5);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 500;
}

.map-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 182, 193, 0.3);
    background: white;
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border-radius: 22px;
}

/* 지도 섹션 반응형 */
@media (max-width: 768px) {
    .map-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-container {
        gap: 30px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

/* Q&A 섹션 */
.qna-container {
    max-width: 900px;
    margin: 0 auto;
}

.qna-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
}

.qna-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 182, 193, 0.4);
}

.qna-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.qna-question:hover {
    background: rgba(255, 182, 193, 0.05);
}

.qna-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.qna-question h3 {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.qna-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.qna-item.active .qna-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #c44569 0%, #ff6b9d 100%);
}

.qna-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5), rgba(245, 240, 255, 0.5));
}

.qna-item.active .qna-answer {
    max-height: 500px;
    padding: 25px 30px 30px 30px;
    border-top: 2px solid rgba(255, 182, 193, 0.3);
}

.answer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 15px;
    margin-bottom: 10px;
    float: left;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.qna-answer p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
    padding-left: 55px;
}

/* Q&A 반응형 */
@media (max-width: 768px) {
    .qna-question {
        padding: 20px 20px;
        gap: 12px;
    }

    .qna-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .qna-question h3 {
        font-size: 1.1rem;
    }

    .qna-toggle {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }

    .qna-item.active .qna-answer {
        padding: 20px 20px 25px 20px;
    }

    .answer-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-right: 12px;
    }

    .qna-answer p {
        font-size: 1rem;
        padding-left: 47px;
    }
}

@media (max-width: 480px) {
    .qna-question {
        padding: 18px 15px;
        gap: 10px;
    }

    .qna-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .qna-question h3 {
        font-size: 1rem;
    }

    .qna-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.4rem;
    }

    .qna-item.active .qna-answer {
        padding: 18px 15px 20px 15px;
    }

    .answer-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-right: 10px;
    }

    .qna-answer p {
        font-size: 0.95rem;
        padding-left: 42px;
    }
}

/* 플라잉 배너 */
.floating-banner {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    animation: floatingBounce 3s ease-in-out infinite;
}

.floating-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.floating-call-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-call-btn:hover::before {
    opacity: 1;
    animation: ripple 1s ease-out;
}

.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.floating-icon {
    font-size: 1.8rem;
    animation: ring 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

/* 플라잉 배너 애니메이션 */
@keyframes floatingBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* 플라잉 배너 반응형 */
@media (max-width: 768px) {
    .floating-banner {
        bottom: 20px;
        right: 20px;
    }

    .floating-call-btn {
        width: 55px;
        height: 55px;
    }

    .floating-icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .floating-banner {
        bottom: 15px;
        right: 15px;
    }

    .floating-call-btn {
        width: 50px;
        height: 50px;
    }

    .floating-icon {
        font-size: 1.5rem;
    }
}