/* Company Page Specific Styles */

/* Company Image Section */
.company-image-section {
    padding: 0;
    background: #fff;
    text-align: center;
    margin-top: 80px; /* 헤더 높이만큼 여백 추가 */
}

.company-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto; /* 이미지 간 여백 추가 */
}

.company-image:last-child {
    margin-bottom: 0; /* 마지막 이미지는 하단 여백 제거 */
}

/* Request Board Specific Styles */
.request-board-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.request-board-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.contact-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}

.phone-link {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.phone-link:hover {
    background: #e55a2b;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.kakao-link {
    display: inline-block;
    background: #fee500;
    color: #3c1e1e;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(254, 229, 0, 0.3);
}

.kakao-link:hover {
    background: #fdd835;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(254, 229, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-image-section {
        margin-top: 60px; /* 모바일에서 헤더 높이 조정 */
        padding: 0;
    }
    
    .request-board-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .phone-link {
        font-size: 1.3rem;
        padding: 12px 25px;
    }
    
    .kakao-link {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}
