/* contact.css - HelloDrink 문의하기 페이지 스타일 */

.contact-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #8e44ad;
    margin-bottom: 30px;
    text-align: center;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.contact-card h2 {
    color: #8e44ad;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info i {
    color: #8e44ad;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #8e44ad;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #7d32a8;
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.faq-answer {
    color: #555;
}

.back-to-home {
    display: inline-block;
    background-color: #8e44ad;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.back-to-home:hover {
    background-color: #7d32a8;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-card h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        gap: 10px;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 15px;
    }
    
    .contact-section h1 {
        font-size: 1.8rem;
    }
    
    .contact-card h2 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
}
