@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot);
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot?#iefix) format("embedded-opentype"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.woff) format("woff"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.ttf) format("truetype");
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none !important;
}
       
        .wrapper6 { width: 100%; background-color: #ffffff; padding-bottom: 0px; }
        .container6 { max-width: 1200px; margin: 0 auto; padding: 20px 0; }

        /* 헤더 스타일 */
        .header { text-align: center; margin-bottom: 90px; }
        .header .logo-icon { font-size: 28px; margin-bottom: 15px; display: block; }
        .header .sub-title { font-family: 'Noto Serif KR', serif; font-size: 15px; letter-spacing: 5px; color: #888; text-transform: uppercase; margin-bottom: 12px; }
        .header .main-title { font-family: 'Noto Serif KR', serif; font-size: 52px; font-style: italic; font-weight: 400; margin-bottom: 35px; }
        .header .intro-text { font-size: 17px; color: #444; letter-spacing: -0.5px; }
        .header .highlight-box { display: inline-block; border: 1px solid #eee; padding: 10px 25px; margin-top: 25px; font-size: 14px; color: #666; }

        /* 상품 카드 섹션 */
        .product-grid { display: flex; justify-content: space-between; gap: 25px; margin-bottom: 120px; align-items: stretch; }
        
        /* 1. 박스 수정: 테두리 둥글게 및 오버 현상 수정 */
        .product-card { 
            flex: 1; 
            border: 2px solid #f2f2f2; /* 기본 테두리를 2px로 설정하여 오버 시 흔들림 방지 */
            border-radius: 20px; /* 테두리 둥글게 */
            padding: 70px 35px 50px; 
            text-align: center; 
            position: relative; 
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
            display: flex; 
            flex-direction: column; 
            background: #fff;
        }

        .product-card:hover { 
            border: 2px solid #333; /* 동일 두께 유지하며 색상만 변경 */
            transform: translateY(-15px); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
            z-index: 10;
        }

        .badge1 { font-size: 11px; letter-spacing: 1.5px; padding: 5px 15px; display: inline-block; margin-bottom: 30px; text-transform: uppercase; font-weight: 500; }
        .badge1.black { background: #000; color: #fff; }
        .badge1.white { border: 1px solid #ddd; color: #666; }
        .badge1.signature { background: #888; color: #fff; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); }

        .card-title { font-family: 'Noto Serif KR', serif; font-size: 32px; margin-bottom: 18px; color: #111; }
        .card-desc { font-size: 15px; color: #777; margin-bottom: 35px; height: 50px; line-height: 1.5; }

        /* 키포인트 박스 스타일 */
        .key-point-box { 
            background-color: #f8f8f8; 
            padding: 20px 15px; 
            font-size: 15px; 
            margin-bottom: 35px; 
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .key-point-box .tag { font-size: 12px; color: #aaa; font-weight: 500; }
        .key-point-box .desc { font-weight: 600; color: #333; }

        /* 시그니처 전용 키포인트 박스 */
        .product-card:last-child .key-point-box {
            background-color: #333;
            color: #fff;
        }
        .product-card:last-child .key-point-box .tag { color: #888; }
        .product-card:last-child .key-point-box .desc { color: #fff; }

        .feature-list { list-style: none; text-align: left; display: inline-block; margin-bottom: 50px; flex-grow: 1; }
        .feature-list li { font-size: 15px; color: #555; margin-bottom: 10px; position: relative; padding-left: 18px; }
        .feature-list li::before { content: '-'; position: absolute; left: 0; color: #ccc; }

        /* 가격 및 예약 버튼 */
        .price-area { border-top: 1px solid #eee; padding-top: 35px; margin-top: auto; }
        .price { font-family: 'Noto Serif KR', serif; font-size: 26px; font-weight: 700; color: #111; margin-bottom: 25px; }
        .price span { font-size: 16px; font-weight: 400; margin-left: 6px; color: #888; }

        .btn-reservation {
            display: block;
            width: 100%;
            background-color: #333;
            color: #fff;
            padding: 15px 0;
            text-decoration: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .btn-reservation:hover {
            background-color: #fff;
            color: #333;
            border-color: #333;
            transform: translateY(-5px);
        }

        /* 정보 그리드 */
        .section-title { text-align: center; font-family: 'Noto Serif KR', serif; font-size: 28px; margin-bottom: 30px; }
        .section-title span { display: block; font-size: 13px; color: #999; margin-top: 10px; font-family: 'Noto Sans KR', sans-serif; letter-spacing: 2px; text-transform: uppercase; }

        .info-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0 80px; border-top: 1px solid #eee; margin-bottom: 25px; }
        .info-item { width: calc(50% - 40px); display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-bottom: 1px dotted #ddd; font-size: 16px; }
        .info-item .label1 { color: #444; }
        .info-item .val { font-weight: 600; color: #111; }

        .notice-small { text-align: center; font-size: 13px; color: #aaa; margin-bottom: 100px; }

        .videography-box { background-color: #f9f9f9; padding: 30px 30px; text-align: center; max-width: 1200px; margin: 0 auto 120px; border-radius: 15px; }
        .video-text { font-size: 16px; color: #555; line-height: 1.9; margin-top: 25px; }

        /* 3. 하단 안내 박스 스타일 */
        .footer-notice-box {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
        }
        .footer-notice-box p {
            font-size: 14px;
            color: #555;
            margin-bottom: 8px;
        }
        .footer-notice-box p:last-child { margin-bottom: 0; }

        .thank-you { text-align: center; font-family: 'Noto Serif KR', serif; font-size: 38px; font-style: italic; color: #eee; margin-top: 120px; letter-spacing: 2px; }

        /* 반응형 설정 */
        @media (max-width: 1024px) {
            .container6 { padding: 20px 20px; }
            .product-grid { flex-wrap: wrap; }
            .product-card { flex: none; width: calc(50% - 13px); }
            .info-grid { gap: 0 40px; }
        }

        @media (max-width: 768px) {
            .container6 { padding: 20px 10px; }
            .main-title { font-size: 40px; }
            .product-card { width: 100%; padding: 50px 25px; }
            .info-item { width: 100%; font-size: 15px; padding: 18px 0; }
            .section-title { font-size: 24px; }
            .videography-box { padding: 30px 20px; }
            .footer-notice-box { padding: 25px 15px; }
            .video-text { font-size: 14px; }
        .header .sub-title { font-size: 13px; }
        .header .main-title { font-size: 40px; }
        .header .intro-text { font-size: 15px; }
        }