/* ISO 9001 Page Specific Styles */

/* ISO 9001 Hero Section */
.iso9001-hero {
    width: 100%;
    display: block;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 134, 171, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-left: 80px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* Tab Navigation - 기존 company.css 스타일 상속 */

/* ISO 9001 Content Section */
.iso9001-content-section {
    padding: 80px 0;
    background: white;
}

.iso9001-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.iso9001-text {
    padding-right: 20px;
}

.iso9001-title {
    font-size: 36px;
    font-weight: 700;
    color: #2E86AB;
    margin-bottom: 30px;
    line-height: 1.3;
}

.iso9001-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.iso9001-description p {
    margin-bottom: 20px;
}

.iso9001-description p:last-child {
    margin-bottom: 0;
}

.iso9001-image {
    position: relative;
}

.iso9001-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-content {
        padding-left: 60px;
    }
    
    .iso9001-content-section {
        padding: 60px 0;
    }
    
    .iso9001-grid {
        gap: 40px;
    }
    
    .iso9001-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        padding-left: 40px;
    }
    
    .iso9001-content-section {
        padding: 50px 0;
    }
    
    .iso9001-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .iso9001-text {
        padding-right: 0;
        order: 2;
    }
    
    .iso9001-image {
        order: 1;
    }
    
    .iso9001-title {
        font-size: 28px;
    }
    
    .iso9001-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .iso9001-hero {
        height: 300px;
    }
    
    .hero-content {
        padding-left: 20px;
    }
    
    .iso9001-content-section {
        padding: 40px 0;
    }
    
    .iso9001-grid {
        gap: 25px;
    }
    
    .iso9001-title {
        font-size: 24px;
    }
    
    .iso9001-description {
        font-size: 14px;
    }
    
    .iso9001-description p {
        margin-bottom: 15px;
    }
}
