/* 동행서비스 소개 페이지 스타일 */
.part-intro-page {
    background: #fff;
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', Arial, sans-serif;
    color: #333;
}

/* 상단 배너 섹션 */
.hero-banner {
    display: flex;
    max-width: 1440px;
    margin: 50px auto 0;
    padding: 40px 20px;
    gap: 40px;
    align-items: center;
    aspect-ratio: 4/1;
    height: auto;
	justify-content:space-between;
	align-items:flex-start
}

/* 왼쪽 섹션 */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    height: 100%;
    justify-content: center;
	width:25%;
}

.logo-section {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #ff7f2a;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff7f2a;
    line-height: 1;
}

.sub-text {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.hero-illustration img{
	width:100%;
	margin-top:-50px;
}
.hero-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 20px 0;
    line-height: 1.4;
}

.hero-title b{
	font-size:2.5rem;
	color:#ff7f2a;
}

@media (max-width: 768px) {
    .hero-title b{
	font-size:1.5rem;
}
}
.hero-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* 오른쪽 이미지 섹션 */
.hero-right {
    position: relative;
    height: 100%;
	width:25%;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-image {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 40%;
    height: 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 중간 서비스 설명 섹션 */
.service-description {
    display: flex;
    max-width: 1440px;
    margin: 20px auto;
    padding: 0 20px;
    gap: 40px;
    align-items: center;
}

.description-left {
    width:30%;
}

.service-image {
    width: 100%;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.description-right {
    flex: 1;
    padding: 20px;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
	text-align:center;
	align-items:center;
}

.service-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hashtag {
    background: white;
    color: #ff7f2a;
    border: 2px solid #ff7f2a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hashtag:hover {
    background: #ff7f2a;
    color: white;
}

.cta-button-container {
    text-align: center;
}

.cta-button {
    background: #ff7f2a;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
}

/* 하단 통계 카드 섹션 */
.stats-section {
    max-width: 1440px;
    margin: 60px auto;
    padding: 0 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #ff7f2a;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.stat-text {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

.stat-text b{
	color:#ff7f2a;
}
/* 반응형 디자인 */
@media (max-width: 1200px) {
    .hero-banner {
        aspect-ratio: 3/1;
        padding: 30px 15px;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        padding: 25px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .service-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
        padding: 20px 10px;
        gap: 30px;
        aspect-ratio: 3/3;
        min-height: auto;
		align-items:center;
    }
    
    .hero-left {
        display:none;
    }
    
    .hero-right {
        width: 100%;
        order: 1;
    }
    
    .main-image {
        min-height: 300px;
    }
    
    .sub-image {
        width: 50%;
        height: 30%;
    }
    
    .service-description {
        flex-direction: column;
        gap: 30px;
    }
    
    .description-left, .description-right {
        width: 100%;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .service-text {
        font-size: 1rem;
    }
    
    .hashtags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        aspect-ratio: 3/3;
        padding: 15px 10px;
    }
    
    .main-image {
        min-height: 250px;
    }
    
    .sub-image {
        width: 60%;
        height: 25%;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .service-text {
        font-size: 0.9rem;
    }
    
    .stat-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .main-text {
        font-size: 1.5rem;
    }
} 