
        .inquiry-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .inquiry-wrapper {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
        .inquiry-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .inquiry-section {
            padding: 60px 0;
        }
        .inquiry-section-alt {
            background: #f5f5f5;
        }
        .inquiry-wrapper h2 {
            font-size: 36px;
            color: #0A1F44;
            margin-bottom: 15px;
            text-align: center;
        }
        .inquiry-wrapper h3 {
            font-size: 20px;
            color: #0A1F44;
            margin-bottom: 15px;
        }
        .inquiry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .inquiry-step-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .inquiry-step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .inquiry-number {
            width: 60px;
            height: 60px;
            background: #1FBF83;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        .inquiry-faq {
            max-width: 900px;
            margin: 40px auto 0;
        }
        .inquiry-faq-item {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        .inquiry-faq-item h3 {
            color: #1FBF83;
            margin-bottom: 10px;
        }
        @media (max-width: 767px) {
            .inquiry-wrapper h2 {
                font-size: 28px;
            }
            .inquiry-grid {
                grid-template-columns: 1fr;
            }
        }
    