
        /* 페이지 헤더 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            text-align: center;
            padding: 8rem 0;
            margin: 80px 24px 0;
            position: relative;
            overflow: hidden;
            height: 400px;
            border-radius: 16px;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .page-header .highlight {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .page-header p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* 메인 콘텐츠 */
        main {
            padding: 0;
        }

        section {
            padding: 6rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--dark-color);
            font-weight: 500;
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 개인정보처리방침 정보 */
        .privacy-info {
            background: var(--light-gray);
        }

        .privacy-intro {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .privacy-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .privacy-intro p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
            color: #666;
        }

        .privacy-intro p:last-child {
            margin-bottom: 0;
        }

        /* 개인정보 처리 조항들 */
        .privacy-section {
            background: var(--light-gray);
            margin-bottom: 0;
            padding: 4rem 0;
        }

        .privacy-section:nth-child(even) {
            background: white;
        }

        .privacy-article {
            margin-bottom: 2rem;
        }

        .privacy-article h3 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e9ecef;
            position: relative;
        }

        .privacy-article h3:before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .privacy-article h4 {
            font-size: 1.3rem;
            color: #495057;
            margin: 2rem 0 1rem 0;
            font-weight: 600;
        }

        .privacy-article p {
            margin-bottom: 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        .privacy-article ul, .privacy-article ol {
            margin: 1.5rem 0 1.5rem 2rem;
            color: #666;
        }

        .privacy-article li {
            margin-bottom: 0.8rem;
            line-height: 1.7;
        }

        /* 테이블 스타일 */
        .table-container {
            overflow-x: auto;
            margin: 2rem 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        th, td {
            padding: 1.5rem;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        th {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-weight: 600;
        }

        tr:hover {
            background: #f8f9fa;
        }

        /* 연락처 섹션 */
        .contact-section {
            background: var(--light-gray);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .contact-item {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .contact-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 15px;
            margin-right: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
        }

        .contact-item h3 {
            margin: 0;
            color: var(--dark-color);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .contact-content {
            margin-top: 1rem;
        }

        .contact-content p {
            margin-bottom: 0.8rem;
            line-height: 1.6;
            color: #666;
        }

        /* 상세보기 버튼 */
        .cta-button {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            border: none;
        }

        /* 반응형 디자인 */
        @media (max-width: 1024px) {
            .nav-links {
                font-size: 14px;
            }

            .logo img {
                width: 100px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .page-header p {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            section {
                padding: 4rem 1rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 2rem;
            }

            .footer-left,
            .footer-center,
            .footer-right {
                width: 100%;
                text-align: center;
                align-items: center;
            }

            .footer-right {
                margin-top: 1rem;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 6rem 1rem;
                height: auto;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .privacy-info-item,
            .contact-item {
                padding: 2rem;
            }

            .contact-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

        /* 애니메이션 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 스크롤바 커스터마이징 */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        }



        /* 가명정보 항목 테이블화 (붙임 파일) */
        .privacy-content {
            background: transparent;
            padding: 1.5rem;
            border-radius: 0;
            box-shadow: none;
            position: relative;
            overflow: visible;
        }
        
        .privacy-content::before {
            display: none;
        }
        
        .privacy-content table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .privacy-content th {
            background: #f8f9fa;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            border-bottom: 1px solid #e9ecef;
            color: #333;
            font-size: 0.95rem;
        }
        
        .privacy-content td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid #e9ecef;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .privacy-content tbody tr:hover {
            background: #f8f9fa;
        }
        
        .privacy-content tbody tr:last-child td {
            border-bottom: none;
        }

        /* 가명정보 항목 테이블화 (붙임 파일) 반응형 */
        @media (max-width: 768px) {
            .privacy-content {
                padding: 1rem;
            }
        
            .privacy-content th,
            .privacy-content td {
                padding: 0.75rem;
                font-size: 0.85rem;
            }
        
            .privacy-content table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        
            .privacy-content table thead {
                display: none;
            }
        
            .privacy-content table tbody,
            .privacy-content table tr,
            .privacy-content table td {
                display: block;
                width: 100%;
            }
        
            .privacy-content table tr {
                margin-bottom: 1rem;
                border: none;
                border-radius: 0;
                padding: 0;
                border-bottom: 1px solid #e9ecef;
            }
        
            .privacy-content table td {
                text-align: right;
                padding-left: 40%;
                position: relative;
                border: none;
                padding-bottom: 0.75rem;
            }
        
            .privacy-content table td::before {
                content: attr(data-label);
                position: absolute;
                left: 0;
                font-weight: 600;
                color: #333;
            }
        
            .privacy-content tbody tr:hover {
                background: transparent;
            }
        }