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

:root {
    --olympic-blue: #0066cc;
    --olympic-red: #ff0000;
    --olympic-yellow: #ffcc00;
    --olympic-green: #00cc00;
    --olympic-black: #000000;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --primary-color: var(--olympic-blue);
    --secondary-color: var(--gold);
    --accent-color: var(--olympic-red);
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1625;
}

body {
    min-height: 100vh;
    background: #c2c5cd;
    font-family: 'Noto Sans KR', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 850px;
    background: #000000;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.header {    
    background: #ced1d7;
    color: white;
    padding-bottom: 1.5rem;
    position: relative;
}


.header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1rem;
}

.logo {
    width: auto;
    height: 3rem;
    position: relative;
    padding: 1.5rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo img {
    height: 100%;
    max-height: 3rem;
    object-fit: contain;
}

.header-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.header-menu > div {
    position: relative;
}

.header-menu a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.header-menu a:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}


.main-section {
    position: relative;
    width: 100%;
    aspect-ratio: 847 / 700;
    min-height: 0;
    background-image: url('../m-images/hero-section-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    max-width: 850px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.0rem;
    box-sizing: border-box;
}

.main-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 850px;
    flex-wrap: wrap;
}

.main-banner-link {
    display: block;
    flex: 1;
    min-width: 0;
    max-width: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.main-banner-link:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.main-banner-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hdomain-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 850px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.hdomain-banners {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hdomain-banners img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.KakaotalkOpenchat-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 850px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.KakaotalkOpenchat-banners {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.KakaotalkOpenchat-link {
    display: block;
    width: 100%;
    /* transition: transform 0.3s ease, opacity 0.3s ease; */
    text-decoration: none;
}

.KakaotalkOpenchat-link img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.KakaotalkOpenchat-link:hover img {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero-section {
    position: relative;
    margin: 0 auto;
    max-width: 850px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--olympic-blue) 0%, var(--olympic-green) 50%, var(--olympic-red) 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding-top: 0.3rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--olympic-blue), var(--olympic-green), var(--olympic-red), var(--olympic-yellow), var(--olympic-black));
}


.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    border-radius: 15px;
    border: 3px solid var(--gold);
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--gold);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
}

.hero-swiper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--gold);
    opacity: 0.7;
    border-radius: 50%;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--olympic-red);
    opacity: 1;
    transform: scale(1.2);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.4rem;
    color: var(--olympic-blue);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}


.youtube-section {
    background: #000000;
    padding: 4rem 0;
    margin: 0 auto;
    max-width: 850px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding-top: 0.3rem;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--olympic-blue), var(--olympic-green), var(--olympic-red), var(--olympic-yellow), var(--olympic-black));
}


.youtube-section .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.youtube-section .section-title h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.youtube-section .section-title p {
    color: #ccc;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.personality-link-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.personality-link-content img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.personality-link-content span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.personality-link-profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#personalities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.personality-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.8) 0%, rgba(117, 117, 117, 0.5) 100%);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.personality-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.about-section {
    background: #000000;
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 850px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-top: 0.3rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--olympic-blue), var(--olympic-green), var(--olympic-red), var(--olympic-yellow), var(--olympic-black));
}


.about-section .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.about-section .section-title h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-section .section-title p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--secondary-color);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #e6e6e6;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text strong {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-text p:last-child {
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.banner-section {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--gold);
}

.banner-swiper {
    max-width: 850px;
    margin: 0 auto;
}

.swiper {
    width: 100%;
    height: 400px;
}

.banner-swiper.swiper {
    height: 400px;
    max-width: 850px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 850px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--olympic-blue), var(--olympic-green), var(--olympic-red), var(--olympic-yellow), var(--olympic-black));
}

.footer p {
    margin: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.footer p:first-child {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.1rem;
}

.footer a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        padding-left: 0;
        margin-top: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image,
    .about-text {
        max-width: 100%;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-text h3 {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding-bottom: 0.75rem;
    }

    .logo {
        height: 3rem;
        padding: 2rem 0;
    }

    .logo img {
        max-width: 100%;
        max-height: 100%;
    }

    .main-section {
        padding: 1rem;
    }

    .main-banners {
        gap: 0.5rem;
    }

    .main-banner-link {
        flex: 1;
        min-width: 0;
    }


    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .swiper {
        height: 300px;
    }

    .banner-swiper.swiper {
        height: 350px;
        border-radius: 8px;
    }

    #personalities-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .personality-link {
        padding: 1rem 1.2rem;
    }

    .personality-link-content img,
    .personality-link-profile img {
        width: 40px;
        height: 40px;
    }

    .personality-link-content span {
        font-size: 1rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding-bottom: 0.5rem;
    }

    .logo {
        height: 2.5rem;
        padding: 2rem 0;
    }

    .logo img {
        max-width: 90%;
        max-height: 100%;
    }

    .main-section {
        padding: 0.5rem;
    }

    .main-banners {
        gap: 0.3rem;
    }

    .main-banner-link {
        flex: 1;
        min-width: 0;
    }

    .hero-content {
        padding: 1.5rem;
        max-width: 90%;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }


    .swiper {
        height: 250px;
    }

    .banner-swiper.swiper {
        height: 250px;
        border-radius: 6px;
    }

    #personalities-container {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .personality-link-content img,
    .personality-link-profile img {
        width: 35px;
        height: 35px;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-image img {
        border-radius: 8px;
    }

    .footer p:first-child {
        font-size: 0.9rem;
    }
}




/* FAQ 섹션 스타일 */
.faq-section {
    padding: 4rem 0;
    margin: 0 auto;
    max-width: 850px;
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding-top: 0.3rem;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--olympic-blue), var(--olympic-green), var(--olympic-red), var(--olympic-yellow), var(--olympic-black));
}


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

.faq-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    position: relative;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: white;
    transition: background-color 0.3s ease;
}

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

.faq-question span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 30px;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    flex-grow: 1;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.faq-answer-active {
    max-height: 1000px;
    transition: max-height 0.5s ease;
}

.faq-answer span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 1rem;
    display: block;
    float: left;
    min-width: 30px;
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-left: 2.6rem;
}

.faq-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
}

.faq-contact {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.faq-contact strong {
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question h3,
.faq-item.active .faq-question span,
.faq-item.active .faq-icon {
    color: white;
}

@media (max-width: 768px) {

    .faq-question span,
    .faq-answer span {
        font-size: 1.4rem;
        min-width: 25px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-content {
        margin-left: 2.4rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1.2rem 1rem;
    }

    .faq-question span,
    .faq-answer span {
        font-size: 1.2rem;
        min-width: 20px;
        margin-right: 0.8rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-content {
        padding: 0 1rem 1.2rem 1rem;
        margin-left: 2rem;
    }
}

/* 이벤트 섹션 스타일 */


/* Contact Section 스타일 */
.contact-section {
    background: #000000;
    padding: 4rem 0;
    margin: 0 auto;
    max-width: 850px;
    min-height: calc(100vh - 200px);
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.contact-description {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-description p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.contact-btn {
    display: block;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.kakao-btn {
    background: #FEE500;
    color: #000000;
}

.telegram-btn {
    background: #0088cc;
    color: #ffffff;
}

.btn-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-left i {
    font-size: 1.5rem;
}

.btn-right {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-header {
    background: #ff0000;
    padding: 1.5rem 2rem;
}

.contact-form-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.contact-form {
    padding: 2rem;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.submit-btn {
    background: #ff0000;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.submit-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 3rem;
    }

    .contact-description p {
        font-size: 1rem;
    }

    .contact-btn {
        padding: 1.2rem 1.5rem;
    }

    .btn-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-right {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form-header {
        padding: 1.2rem 1.5rem;
    }

    .contact-form-header h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-description p {
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 1rem;
    }

    .btn-left {
        font-size: 1rem;
    }

    .btn-left i {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-form-header {
        padding: 1rem;
    }

    .contact-form-header h2 {
        font-size: 1.1rem;
    }

    .submit-btn {
        width: 100%;
        padding: 0.9rem;
    }
}

/* 이벤트 섹션 스타일 */