@charset "utf-8";

/* =========================== SUB */
#shSub{display:flex;align-items:center;justify-content:center;width:90%;height:350px;margin:0 auto;background:url(../img/sub/sub_bg.jpg) center no-repeat;background-size:cover}
#shSub .txt_area{font-size:18px;text-align:center;color:rgba(255,255,255,.7);font-family:'Pretendard'}
#shSub .txt_area p{margin-bottom:20px;font-size:45px;font-weight:700;color:#fff}

/* =========================== SNB */
#shSnb{display:flex;justify-content: center;width:max-content;margin:-30px auto 50px;box-shadow:6px 6px 16px rgba(0,0,0,.3);background:var(--primary)}
#shSnb li+li{border-left:1px solid rgba(255,255,255,.15)}
#shSnb li a{opacity:.7;display:block;min-width:160px;height:62px;padding:0 20px;font-size:17px;font-weight:400;line-height:62px;text-align:center;color:#fff;back}
#shSnb li.on a{opacity:1;font-weight:600}

/* =========================== PAGE */
#greeting{font-size:15px;font-weight:400;line-height:1.8;letter-spacing:-.2px;color:#777;font-family:'Noto Sans KR'}
#greeting .tit_area{padding:0 0 40px 5%;font-size:38px;font-weight:100;line-height:1.35;letter-spacing:-.5px;color:#222}
#greeting .tit_area p{font-weight:600}
#greeting .img{height:420px;background:url(../img/sub/greeting_img.jpg) center no-repeat;background-size:cover}
#greeting .cont{padding:40px 0 0 25%}
#greeting .cont .pl{white-space:pre-line}
#greeting .cont .sign{margin-top:30px;font-weight:500;color:#222}
#greeting .cont .sign span{margin-left:20px;font-size:17px}

/* 한영전환 */
.header_right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language_selector {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
}

.globe_icon {
    color: #666;
}

.lang_dropdown {
    position: relative;
}

.current_lang {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.lang_options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 60px;
    z-index: 1000;
}

.language_selector:hover .lang_options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang_option {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s ease;
}

.lang_option:hover {
    background: #f5f5f5;
}

.lang_option.active {
    background: #0066cc;
    color: white;
}

.lang_option.active:hover {
    background: #0052a3;
}



/*sub 1.html
        /* 고급스러운 스타일 추가 */
        .company-intro {
            background: linear-gradient(135deg, #f8f9fa 0%, #e3f2f8 100%);
            padding: 80px 0;
        }
        
        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .intro-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .intro-title h1 {
            font-size: 48px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        
        .intro-title .subtitle {
            font-size: 20px;
            color: #4a5568;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .video-section {
            background: white;
            border-radius: 20px;
            padding: 60px;
            margin: 60px 0;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin: 80px 0;
        }
        
        .content-card {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .content-card h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .content-card h3::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #4facfe;
            border-radius: 50%;
            margin-right: 12px;
        }
        
        .content-card p {
            color: #4a5568;
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 16px;
        }
        
        .vision-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 60px;
            border-radius: 20px;
            margin: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .vision-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .vision-content {
            position: relative;
            z-index: 2;
        }
        
        .vision-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        
        .vision-section p {
            font-size: 18px;
            line-height: 1.8;
            opacity: 0.95;
        }
        
        .ceo-message {
            background: white;
            border-radius: 20px;
            padding: 60px;
            margin: 80px 0;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .ceo-message::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 40px;
            font-size: 120px;
            color: #e2e8f0;
            font-family: serif;
            line-height: 1;
        }
        
        .ceo-content {
            position: relative;
            z-index: 2;
        }
        
        .ceo-title {
            font-size: 32px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 32px;
            text-align: center;
        }
        
        .ceo-text {
            font-size: 18px;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 24px;
            text-align: center;
        }
        
        .ceo-signature {
            text-align: right;
            margin-top: 40px;
            font-size: 20px;
            font-weight: 600;
            color: #1a365d;
        }
        
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin: 80px 0;
        }
        
        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 12px;
        }
        
        .stat-label {
            font-size: 16px;
            color: #4a5568;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .intro-title h1 {
                font-size: 36px;
            }
            
            .video-section, .content-card, .ceo-message {
                padding: 40px 30px;
            }
            
            .intro-container {
                padding: 0 20px;
            }
        }
        
        /* sub3.html
              /* 고급스러운 연혁 페이지 스타일 */
        .history-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .history-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .history-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .history-hero h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        
        .history-hero .subtitle {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 16px;
            opacity: 0.95;
        }
        
        .history-hero .description {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .history-timeline {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 40px;
            position: relative;
        }
        
        .timeline-container {
            position: relative;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 80px;
            position: relative;
            align-items: center;
        }
        
        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            width: 45%;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px 20px 0 0;
        }
        
        .timeline-date {
            font-size: 32px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
        }
        
        .timeline-date::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #667eea;
            border-radius: 50%;
            margin-right: 12px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .timeline-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .timeline-description {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.7;
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: white;
            border: 4px solid #667eea;
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 0;
            margin-right: 0;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 0;
            margin-left: 0;
        }
        
        .arrow {
            position: absolute;
            width: 0;
            height: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .timeline-item:nth-child(odd) .arrow {
            right: -20px;
            border-left: 20px solid white;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }
        
        .timeline-item:nth-child(even) .arrow {
            left: -20px;
            border-right: 20px solid white;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }
        
        .milestone-stats {
            background: linear-gradient(135deg, #f8f9fa 0%, #e3f2f8 100%);
            padding: 80px 0;
            margin: 80px 0;
        }
        
        .milestone-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            text-align: center;
        }
        
        .milestone-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 60px;
        }
        
        .milestone-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .milestone-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .milestone-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .milestone-card:hover {
            transform: translateY(-10px);
        }
        
        .milestone-number {
            font-size: 48px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 16px;
        }
        
        .milestone-label {
            font-size: 18px;
            color: #1a365d;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .milestone-desc {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.5;
        }
        
        .future-vision {
            background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .future-vision::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .future-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }
        
        .future-vision h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 32px;
        }
        
        .future-vision p {
            font-size: 20px;
            line-height: 1.8;
            opacity: 0.95;
        }
        
        @media (max-width: 768px) {
            .history-hero {
                padding: 80px 0 60px;
            }
            
            .history-hero h1 {
                font-size: 40px;
            }
            
            .history-hero .subtitle {
                font-size: 20px;
            }
            
            .timeline-line {
                left: 30px;
            }
            
            .timeline-item {
                flex-direction: column !important;
                align-items: flex-start;
                margin-left: 60px;
            }
            
            .timeline-content {
                width: 100%;
                margin: 0 !important;
            }
            
            .timeline-dot {
                left: 30px;
            }
            
            .arrow {
                display: none;
            }
            
            .history-timeline {
                padding: 60px 20px;
            }
            
            .milestone-container, .future-content {
                padding: 0 20px;
            }
        }
        /*ㄴsub13.html*/
         
        .directions_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .page_header {
            text-align: center;
            margin-bottom: 80px;
        }

        .page_header h1 {
            font-size: 48px;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .page_header p {
            font-size: 18px;
            color: #7f8c8d;
            font-weight: 300;
            line-height: 1.6;
        }

        .directions_content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .map_section {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            height: 400px;
        }

        .map_wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .map_placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 300;
        }

        .info_section {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info_card {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .info_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .info_card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .info_card .icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        .info_card p {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .info_card .address {
            font-size: 18px;
            font-weight: 500;
            color: #2c3e50;
        }

        .transport_section {
            margin-top: 60px;
        }

        .transport_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .transport_card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 4px solid;
            transition: all 0.3s ease;
        }

        .transport_card.subway {
            border-left-color: #4CAF50;
        }

        .transport_card.bus {
            border-left-color: #2196F3;
        }

        .transport_card.car {
            border-left-color: #FF9800;
        }

        .transport_card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .transport_card h4 {
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .transport_card ul {
            list-style: none;
            padding: 0;
        }

        .transport_card li {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .transport_card li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #999;
        }

        @media (max-width: 768px) {
            .directions_content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .page_header h1 {
                font-size: 36px;
            }
            
            .directions_container {
                padding: 60px 20px;
            }
            
            .transport_grid {
                grid-template-columns: 1fr;
            }
        }
        
        /*sub14.html*/
        
        .contact_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .page_header {
            text-align: center;
            margin-bottom: 80px;
        }

        .page_header h1 {
            font-size: 48px;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .page_header p {
            font-size: 18px;
            color: #7f8c8d;
            font-weight: 300;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact_content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
        }

        .contact_info {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .contact_info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            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;
        }

        .contact_info > * {
            position: relative;
            z-index: 1;
        }

        .contact_info h2 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .contact_info p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .contact_details {
            list-style: none;
            padding: 0;
        }

        .contact_details li {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            font-size: 16px;
        }

        .contact_details .icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 18px;
            backdrop-filter: blur(10px);
        }

        .contact_form {
            background: #fff;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .form_group {
            margin-bottom: 30px;
        }

        .form_row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form_group label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .form_group input,
        .form_group select,
        .form_group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: #fff;
        }

        .form_group input:focus,
        .form_group select:focus,
        .form_group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .form_group textarea {
            height: 120px;
            resize: vertical;
        }

        .form_group.full-width {
            grid-column: 1 / -1;
        }

        .submit_btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }

        .submit_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .submit_btn:active {
            transform: translateY(-1px);
        }

        .quick_contact {
            margin-top: 80px;
            text-align: center;
        }

        .quick_contact h3 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .quick_links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .quick_link {
            background: #fff;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 2px solid transparent;
        }

        .quick_link:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: #667eea;
        }

        .quick_link .icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 20px;
        }

        .quick_link h4 {
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .quick_link p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .contact_content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact_form {
                padding: 40px 30px;
            }
            
            .form_row {
                grid-template-columns: 1fr;
            }
            
            .page_header h1 {
                font-size: 36px;
            }
            
            .contact_container {
                padding: 60px 20px;
            }
            
            .contact_info {
                padding: 40px 30px;
            }
        }

        .required {
            color: #e74c3c;
        }

        .form_group small {
            color: #666;
            font-size: 14px;
            margin-top: 5px;
            display: block;
        }
    

        /* 오시는길 페이지 전용 스타일 */

/* 오시는길 메인 컨테이너 */
.directions-intro {
    padding: 0;
    background: #fff;
}

.directions-intro .intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 지도 섹션 */
.map-section {
    margin: 80px 0;
    text-align: center;
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* 회사 정보 섹션 */
.company-info-section {
    margin: 80px 0;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.company-info-section .info-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.company-info-section .info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* 교통수단 안내 섹션 */
.transport-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px 0;
    padding: 0 20px;
}

.transport-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.transport-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 15px 35px rgba(240, 147, 251, 0.2);
}

.transport-card:nth-child(2):hover {
    box-shadow: 0 25px 50px rgba(240, 147, 251, 0.3);
}

.transport-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.2);
}

.transport-card:nth-child(3):hover {
    box-shadow: 0 25px 50px rgba(79, 172, 254, 0.3);
}

.transport-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 15px 35px rgba(67, 233, 123, 0.2);
}

.transport-card:nth-child(4):hover {
    box-shadow: 0 25px 50px rgba(67, 233, 123, 0.3);
}

.transport-number {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.transport-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.transport-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* 방문 안내 메시지 */
.visit-message {
    margin: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 32px;
    padding: 80px 60px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.visit-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 40px;
    position: relative;
}

.visit-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.visit-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
    text-align: left;
}

.visit-text:last-of-type {
    margin-bottom: 50px;
}

.visit-signature {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    text-align: right;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .directions-intro .intro-container {
        padding: 40px 15px;
    }
    
    .transport-section {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 60px 0;
    }
    
    .transport-card {
        padding: 30px 20px;
    }
    
    .visit-message {
        margin: 60px 0;
        padding: 50px 30px;
    }
    
    .visit-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .transport-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .transport-card {
        padding: 25px 15px;
    }
    
    .transport-number {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .transport-label {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .transport-desc {
        font-size: 14px;
    }
    
    .visit-message {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .visit-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .visit-text {
        font-size: 15px;
        text-align: center;
    }
    
    .visit-signature {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        margin: 0 -10px;
        border-radius: 12px;
    }
    
    .company-info-section {
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .company-info-section .info-content h2 {
        font-size: 22px;
    }
    
    .transport-card {
        padding: 20px 15px;
    }
    
    .visit-message {
        margin: 40px 0;
        padding: 30px 15px;
    }
}


/* 문의하기 페이지 전용 스타일 */

/* 문의하기 메인 컨테이너 */
.contact-intro {
    padding: 0;
    background: #fff;
}

.contact-intro .intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 문의 폼 섹션 */
.form-section {
    margin: 80px 0;
    text-align: center;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* 폼 그리드 */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    appearance: none;
}

.char-count {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* 체크박스 그룹 */
.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    margin-top: 2px;
    transform: scale(1.2);
    cursor: pointer;
}

.checkbox-group small {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    margin-left: 24px;
    line-height: 1.5;
}

/* 제출 버튼 */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 연락처 정보 섹션 */
.contact-info-section {
    margin: 80px 0;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.contact-info-section .info-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.contact-info-section .info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* 빠른 문의 섹션 */
.quick-contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px 0;
    padding: 0 20px;
}

.quick-contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.quick-contact-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 15px 35px rgba(240, 147, 251, 0.2);
}

.quick-contact-card:nth-child(2):hover {
    box-shadow: 0 25px 50px rgba(240, 147, 251, 0.3);
}

.quick-contact-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.2);
}

.quick-contact-card:nth-child(3):hover {
    box-shadow: 0 25px 50px rgba(79, 172, 254, 0.3);
}

.quick-contact-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 15px 35px rgba(67, 233, 123, 0.2);
}

.quick-contact-card:nth-child(4):hover {
    box-shadow: 0 25px 50px rgba(67, 233, 123, 0.3);
}

.quick-number {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.quick-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.quick-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* 문의 안내 메시지 */
.contact-message {
    margin: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 32px;
    padding: 80px 60px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 40px;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.contact-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
    text-align: left;
}

.contact-text:last-of-type {
    margin-bottom: 50px;
}

.contact-signature {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    text-align: right;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .contact-intro .intro-container {
        padding: 40px 15px;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-contact-section {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 60px 0;
    }
    
    .quick-contact-card {
        padding: 30px 20px;
    }
    
    .contact-message {
        margin: 60px 0;
        padding: 50px 30px;
    }
    
    .contact-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .quick-contact-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .quick-contact-card {
        padding: 25px 15px;
    }
    
    .quick-number {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .quick-label {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .quick-desc {
        font-size: 14px;
    }
    
    .contact-message {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .contact-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .contact-text {
        font-size: 15px;
        text-align: center;
    }
    
    .contact-signature {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .contact-info-section .info-content h2 {
        font-size: 22px;
    }
    
    .form-wrapper {
        padding: 25px 15px;
        margin: 0 -10px;
    }
    
    .quick-contact-card {
        padding: 20px 15px;
    }
    
    .contact-message {
        margin: 40px 0;
        padding: 30px 15px;
    }
}

/*sub21.html*/
/* X-Ray 분석 페이지 전용 스타일 */
        .xray-hero {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .xray-hero::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 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="700" cy="300" r="80" fill="url(%23grad)"/><circle cx="400" cy="600" r="120" fill="url(%23grad)"/></svg>') no-repeat;
            background-size: cover;
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #e0e7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .feature-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(46, 82, 152, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(46, 82, 152, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 2rem;
            color: white;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #2d3748;
        }

        .feature-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .feature-benefits {
            list-style: none;
            padding: 0;
        }

        .feature-benefits li {
            padding: 8px 0;
            position: relative;
            padding-left: 24px;
            color: #2d3748;
        }

        .feature-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #48bb78;
            font-weight: bold;
        }

        .tech-section {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            padding: 100px 0;
        }

        .tech-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #2d3748;
        }

        .tech-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .tech-content h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2d3748;
        }

        .tech-content p {
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .tech-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #4a5568;
            font-weight: 500;
        }

        .cta-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            text-decoration: none;
            color: white;
        }

        .demo-section {
            padding: 100px 0;
            background: white;
        }

        .demo-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .demo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .demo-card {
            background: #f8fafc;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: border-color 0.3s ease;
        }

        .demo-card:hover {
            border-color: #667eea;
        }

        .demo-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: white;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .tech-showcase {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .tech-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                padding: 60px 20px;
            }
        }