
* {
    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 / 800;
    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;
    aspect-ratio: 847 / 450;
    min-height: 0;
    width: 100%;
    margin: 0 auto;
    max-width: 850px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;    
    background-image: url('../m-images/Kakaotalk-telegram-Openchat-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    align-items: flex-end;
}

.KakaotalkOpenchat-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 850px;
    flex-wrap: wrap;
    padding: 1.0rem;
    box-sizing: border-box;
}

.KakaotalkOpenchat-link {
    display: block;
    flex: 1;
    min-width: 0;
    max-width: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.KakaotalkOpenchat-link:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.KakaotalkOpenchat-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.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: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    padding: 4rem 0;
    margin: 0 auto;
    max-width: 850px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
    padding-top: 0.3rem;
    /* border-top: 4px solid #ff0000; */
    border-bottom: 4px solid #ff0000;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #cc0000, #ff3333, #ff0000, #cc0000);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.6);
}

.youtube-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.youtube-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.youtube-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.youtube-icon {
    font-size: 4rem;
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.5);
    animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.youtube-section .section-title {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.youtube-main-title {
    font-size: 2.8rem;
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.youtube-sub-title {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 0, 0, 0.3);
    margin-bottom: 1rem;
    font-weight: 600;
}

.youtube-description {
    color: #ffcccc;
    font-size: 1.3rem;
    margin-top: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.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 #e9ecef;
    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(255, 0, 0, 0.15) 0%, rgba(204, 0, 0, 0.25) 100%);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3), inset 0 0 20px rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.personality-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.personality-link:hover::before {
    left: 100%;
}

.personality-link:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(255, 51, 51, 0.4) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.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;
}

@media (max-width: 992px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1rem;
    }

    .logo {
        padding: 1rem 0;
        height: 2.5rem;
    }

    .logo img {
        max-height: 2.5rem;
    }

    .header-menu {
        gap: 1.5rem;
    }

    .header-menu a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .header-text {
        padding-left: 0;
        margin-top: 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;
    }

    .header-content {
        padding: 0.5rem;
    }

    .logo {
        height: 2.5rem;
        padding: 1rem 0;
    }

    .logo img {
        max-width: 100%;
        max-height: 2.5rem;
    }

    .header-menu {
        gap: 1rem;
    }

    .header-menu a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .main-section {
        padding: 1rem;
    }

    .main-banners {
        gap: 0.5rem;
    }

    .main-banner-link {
        flex: 1;
        min-width: 0;
    }

    .KakaotalkOpenchat-banners {
        gap: 0.5rem;
        padding: 1rem;
    }

    .KakaotalkOpenchat-link {
        flex: 1;
        min-width: 0;
    }



    .section-title h2 {
        font-size: 2rem;
    }

    .swiper {
        height: 300px;
    }

    .banner-swiper.swiper {
        height: 350px;
        border-radius: 8px;
    }

    .youtube-title-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .youtube-icon {
        font-size: 3rem;
    }

    .youtube-main-title {
        font-size: 2.2rem;
    }

    .youtube-sub-title {
        font-size: 1.6rem;
    }

    .youtube-description {
        font-size: 1.1rem;
    }

    #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;
    }

    .header-content {
        padding: 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .logo {
        height: 2rem;
        padding: 0.75rem 0;
    }

    .logo img {
        max-width: 90%;
        max-height: 2rem;
    }

    .header-menu {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-menu a {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }

    .main-section {
        padding: 0.5rem;
    }

    .main-banners {
        gap: 0.3rem;
    }

    .main-banner-link {
        flex: 1;
        min-width: 0;
    }

    .KakaotalkOpenchat-banners {
        gap: 0.3rem;
        padding: 0.5rem;
    }

    .KakaotalkOpenchat-link {
        flex: 1;
        min-width: 0;
    }


    .youtube-section {
        padding: 3rem 0;
    }

    .youtube-header {
        padding-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .youtube-title-wrapper {
        gap: 1rem;
    }

    .youtube-icon {
        font-size: 2.5rem;
    }

    .youtube-main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .youtube-sub-title {
        font-size: 1.4rem;
    }

    .youtube-description {
        font-size: 1rem;
    }

    .swiper {
        height: 250px;
    }

    .banner-swiper.swiper {
        height: 250px;
        border-radius: 6px;
    }

    #personalities-container {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .personality-link {
        padding: 1rem;
    }

    .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;
    }
}

/* Services Section 스타일 */
.services-section {
    background: #000000;
    padding: 4rem 0;
    margin: 0 auto;
    max-width: 850px;
    position: relative;
}

.services-section .section-title {
    margin-bottom: 3rem;
}

.services-section .section-title h2 {
    font-size: 2.4rem;
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.services-section .section-title p {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000, #ff3333, #ff0000, #cc0000);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.service-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .services-section .section-title h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0;
    }

    .services-section .section-title {
        margin-bottom: 2rem;
    }

    .services-section .section-title h2 {
        font-size: 1.8rem;
    }

    .services-section .section-title p {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

/* 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;
    }
}

/* 이벤트 섹션 스타일 */