* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

body {
    line-height: 1.6;
    font-family: 'Noto Sans KR', sans-serif;
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b00;
    background-color: rgba(255, 107, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

nav a {
    text-decoration: none;
    color: #333;
}

/* Hero section */
.hero {
    height: 450px;
    background: url('/assets/images/banner.png') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 95px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* New Section Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: #f8f8f8;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* Contact Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.contact-item li {
    margin: 0.5rem 0;
    color: #666;
}

.contact-cta {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-cta h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    color: #666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Trust Section Styles */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.trust-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.trust-number {
    background: #ff6b00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.trust-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h4 {
    color: #333;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #666;
}

.buttons {
    display: flex;
    gap: 6rem;
}

.button {
    width: 160px;
    padding: 9px 11px;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    transition: background 0.3s;
    font-size: 14px;
    display: inline-block;
    text-align: center;
}

.button:hover {
    background: #e55a00;
    color: white;
}

.button.primary {
    background: #ff6b00;
}

.button.secondary {
    background: #666;
}

/* Content section */
.content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

p {
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 400;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.image-grid img {
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Footer styles */
footer {
    background: #333;
    color: white;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.support-info {
    margin-bottom: 1rem;
}

.support-info p {
    color: #fff !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    color: white;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
    margin-top: 2rem;
}

.copyright p {
    color: white;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-button {
    padding: 0.75rem 1.5rem;
    border: 1px solid #fff;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.footer-button:hover {
    background: #fff;
    color: #333;
}

.buttons a {
    background-image: url("/assets/images/button_1.png");
    background-repeat: no-repeat;
}
/* 반응형 스타일 추가 */
@media screen and (max-width: 1200px) {
    .content {
        padding: 0 1.5rem;
    }

    .footer-content {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 350px;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 160px;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-button {
        width: 160px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .button {
        width: 160px;
        font-size: 13px;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    .content {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .section {
        margin-bottom: 2rem;
    }

    .footer-content {
        text-align: center;
    }

    .support-info h3 {
        font-size: 1.1rem;
    }

    .support-info p {
        font-size: 0.9rem;
    }
}

/* 이미지 반응형 처리 */
img {
    max-width: 100%;
    height: auto;
}

/* 네비게이션 반응형 처리 */
@media screen and (max-width: 768px) {
    nav {
        padding: 0.5rem;
    }

    .logo img {
        height: 40px;
    }
}

/* 컨테이너 최대 너비 설정 */
.content,
.footer-content,
nav {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}