* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s infinite linear;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-100px) translateY(-50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out, textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

.limited-offer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    animation: pulse 2s infinite, slideInUp 1s ease-out 0.4s both, glow 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.limited-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    to {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.2);
    }
}

.limited-offer h3 {
    color: #FFD700;
    font-size: 1.6rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.limited-offer p {
    position: relative;
    z-index: 2;
}

.cta-button {
    /* background: linear-gradient(45deg, #FF6B6B, #FF8E53, #FFD93D); */
    /* background-size: 300% 300%; */
    /* color: white; */
    padding: 25px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease;
    /* box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4); */
    animation: slideInUp 1s ease-out 0.6s both, gradient-shift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); */
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    /* box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6); */
}

.cta-button:hover::before {
    left: 100%;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
}

.stats::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"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="1.5" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="30" r="1" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.2;0.1" dur="4s" repeatCount="indefinite"/></circle></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.stat-number {
    font-size: 24px;
    font-weight: 900;
    color: #FFD700;
    display: block;
    animation: countUp 2s ease-out, pulse 2s infinite;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Profile Section */
.profile {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    position: relative;
}

.profile::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"><polygon points="50,5 61,35 95,35 69,57 79,91 50,70 21,91 31,57 5,35 39,35" fill="rgba(102,126,234,0.1)"><animateTransform attributeName="transform" type="rotate" values="0 50 50;360 50 50" dur="20s" repeatCount="indefinite"/></polygon></svg>');
}

.profile-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 75px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: bounce 2s infinite, rotate-profile 10s linear infinite;
    position: relative;
    z-index: 2;
}

@keyframes rotate-profile {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.profile h2 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.profile-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.tag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Enhanced Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expand 1s ease-out 0.5s both;
}

@keyframes expand {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
    background: linear-gradient(45deg, #764ba2, #667eea);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #667eea;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::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"><path d="M20,50 Q50,20 80,50 Q50,80 20,50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"><animateTransform attributeName="transform" type="rotate" values="0 50 50;360 50 50" dur="15s" repeatCount="indefinite"/></path></svg>');
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    animation: fadeInUp 1s ease-out;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 25px;
    max-height: 200px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

/* Enhanced Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits::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"><circle cx="25" cy="25" r="10" fill="rgba(255,255,255,0.1)"><animate attributeName="r" values="5;15;5" dur="3s" repeatCount="indefinite"/></circle><circle cx="75" cy="75" r="8" fill="rgba(255,255,255,0.1)"><animate attributeName="r" values="3;12;3" dur="4s" repeatCount="indefinite"/></circle></svg>');
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    animation: fadeInUp 1s ease-out;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::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 8s linear infinite;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
}

.benefit-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700;
    animation: bounce 2s infinite;
    position: relative;
    z-index: 2;
}

.benefit-item h3 {
    position: relative;
    z-index: 2;
}

.benefit-item p {
    position: relative;
    z-index: 2;
}

/* Enhanced Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::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"><rect x="0" y="0" width="100" height="100" fill="url(%23stars)"/><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.3"><animate attributeName="opacity" values="0.1;0.6;0.1" dur="2s" repeatCount="indefinite"/></circle></pattern></defs></svg>');
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.countdown-item {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    min-width: 100px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.countdown-item:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3));
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.2;
    animation: floatAround 15s infinite linear;
    font-size: 2rem;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(-50px, -100px) rotate(180deg);
    }

    75% {
        transform: translate(-100px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    z-index: 1000;
}

.scroll-indicator:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.6);
}

/* Parallax Effects */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-element {
    position: absolute;
    opacity: 0.1;
    animation: parallax 20s infinite linear;
}

@keyframes parallax {
    0% {
        transform: translateY(100vh) translateX(0);
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
    }
}

/* Interactive Hover Effects */
.interactive-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.interactive-card:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Additional Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-button {
    position: relative;
    /* background: #C33B2C;
    color: white; */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
}

.floating-button:hover {
    transform: scale(1.05);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
}

.floating-button .icon {
    font-size: 24px;
}

@media (max-width: 768px) {
    .floating-button-container {
        bottom: 20px;
    }

    .floating-button {
        font-size: 16px;
        padding: 12px 24px;
    }
}

.toggle {
    display: none;
}

.ac_title,
.ac_content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.ac_title::after,
.ac_title::before {
    content: "";
    position: absolute;
    background-color: #464646;
    transition: all 0.3s;
}

.ac_title::after {
    transform: rotate(90deg);
}

.toggle:checked+.ac_title::before {
    transform: rotate(90deg) !important;
}

.ac {
    margin: 0 auto;
}

.option {
    position: relative;
}

.ac_title {
    display: flex;
    position: relative;
    justify-content: center;
}

.ac_content {
    max-height: 0;
    overflow: hidden;
}

.toggle:checked+.ac_title+.ac_content {
    max-height: 100px;
    /* transition: all 0.8s; */
}

/* =============
        #question .ac
        ============= */
#question {
    padding: 50px 0 50px;
    background-image: url("static/image/bg_question.png");
    background-size: cover;
    background-position: center bottom;
}

#question h2 {
    margin-bottom: 30px;
}

#question .ac {
    width: 94%;
    max-width: 850px;
}

#question .ac_title::after,
#question .ac_title::before {
    right: 15px;
    top: 45%;
    width: 1px;
    height: 15px;
}

#question .option {
    margin-bottom: 1em;
    border-top: solid 1px #DCDCDC;
    margin-bottom: 0;
}

#question .ac_title {
    display: flex;
    position: relative;
    justify-content: flex-start;
    padding: 4%;
    align-items: flex-start;
    padding: 30px 0 10px;
}

#question .ac_content {
    /* padding: 0 5% 0 5%; */
    padding: 0 27px 0 0px;
}

#question .ac_content {
    margin-bottom: 20px;
}

.txt_q {
    color: #0281FF;
}

.txt_a {
    color: #FFA902;
    font-weight: 400;
}