        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans KR', sans-serif;
        }
		
        /* ÀüÃ¼ ÆäÀÌÁö ½ºÅ¸ÀÏ */
        body {
            background-color: #fffcf0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .logo {
            width: 264px;
            margin-bottom: 30px;
        }
        
        .title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 40px;
        }
        
        .cards-container {
            display: flex;
            gap: 20px;
            max-width: 800px;
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .card {
            width: 320px;
            height: 280px;
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            color: white;
            text-align: center;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        
        .card-red {
            background-color: #7a1f1f;
        }
        
        .card-orange {
            background-color: #f5a742;
        }
        
        .card-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .btn {
            background-color: white;
            color: #333;
            border: none;
            border-radius: 50px;
            padding: 12px 40px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 30px;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .cards-container {
                flex-direction: column;
                align-items: center;
            }
            
            .card {
                width: 100%;
                max-width: 320px;
            }
        }
		
        /* ¿À¹ö·¹ÀÌ ¹è°æ */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        /* ´ë±â¿­ ÆË¾÷ ÄÁÅ×ÀÌ³Ê */
        .waiting-popup {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 30px;
            width: 90%;
            max-width: 450px;
            text-align: center;
            position: relative;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ·Î°í ¿µ¿ª */
        .logo-area {
            margin-bottom: 20px;
        }

        .logo-area img {
            max-width: 150px;
            height: auto;
        }

        /* Á¦¸ñ ½ºÅ¸ÀÏ */
        #waiting-title {
            color: #e74c3c;
            font-size: 24px;
            margin: 0 0 15px 0;
        }

        /* »óÅÂ ¸Þ½ÃÁö */
        #status {
            font-size: 16px;
            margin-bottom: 20px;
            color: #555;
        }

        /* ÇÁ·Î±×·¹½º ¹Ù */
        #progressBar {
            width: 100%;
            height: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            appearance: none;
            -webkit-appearance: none;
        }

        #progressBar::-webkit-progress-bar {
            background-color: #f0f0f0;
            border-radius: 5px;
        }

        #progressBar::-webkit-progress-value {
            background-color: #3498db;
            border-radius: 5px;
            transition: width 0.5s ease;
        }

        #progressBar::-moz-progress-bar {
            background-color: #3498db;
            border-radius: 5px;
        }

        /* ¿¹»ó ´ë±â ½Ã°£ */
        #estimate {
            font-size: 15px;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 25px;
        }

        /* ¾Ë¸² ÅØ½ºÆ® */
        .notice {
            background-color: #ececec;
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
            border-left: 4px solid #3498db;
        }

        .notice p {
            margin: 5px 0;
            font-size: 12px;
            color: #666;
			text-align:left;
        }

        /* ¹ÝÀÀÇü µðÀÚÀÎ */
        @media (max-width: 480px) {
            .waiting-popup {
                padding: 20px;
                width: 85%;
            }
            
            #waiting-title {
                font-size: 20px;
            }
        }