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

body {
    font-family: 'Pretendard', sans-serif;
    color: #333;
    line-height: 1.6;
}

.hero-banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('../images/herobg.webp') no-repeat center/cover;
    display: flex;
    align-items: center;

    padding-top: 80px;
    box-sizing: border-box;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-content h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

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

.breadcrumb {
    padding: 25px 0;
    font-size: 13px;
    color: #888;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
}

.breadcrumb strong {
    color: #333;
    font-weight: 500;
}

.about-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-bottom: 100px;
}

.about-wrapper.about-reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 0 0 450px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 26px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
    word-break: keep-all;
}

@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-wrapper.about-reverse {
        flex-direction: column;
    }
    
    .about-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .hero-banner {
        height: 200px;
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 14px;
    }
}