/* Contact Page Specific Styles */

/* Container Styles */
.paeseedang-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.paeseedang-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-top: 80px; /* Added space below header */
}

.paeseedang-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.paeseedang-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: -1;
}

.paeseedang-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.paeseedang-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.paeseedang-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Contact Form Section */
.paeseedang-contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.paeseedang-form-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.paeseedang-form-content {
    flex: 1;
    max-width: 600px;
}

.paeseedang-form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2E7D32;
}

.paeseedang-form-content p {
    margin-bottom: 2rem;
    color: #616161;
}

.paeseedang-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.paeseedang-form-group {
    position: relative;
}

.paeseedang-form-group input,
.paeseedang-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.paeseedang-form-group input:focus,
.paeseedang-form-group textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    outline: none;
}

.paeseedang-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.paeseedang-form-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 550px;
}

.paeseedang-form-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.paeseedang-form-image:hover img {
    transform: scale(1.03);
}

.paeseedang-button {
    padding: 15px 30px;
    background-color: #2E7D32;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.paeseedang-button:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.paeseedang-faq-section {
    padding: 80px 0;
    background-color: white;
}

.paeseedang-faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #212121;
}

.paeseedang-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.paeseedang-faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.paeseedang-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.paeseedang-faq-question:hover {
    background-color: #eeeeee;
}

.paeseedang-faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.paeseedang-faq-icon {
    font-size: 1.5rem;
    color: #2E7D32;
    transition: transform 0.3s ease;
}

.paeseedang-faq-item.active .paeseedang-faq-icon {
    transform: rotate(45deg);
}

.paeseedang-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.paeseedang-faq-item.active .paeseedang-faq-answer {
    padding: 20px;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

/* CTA Section */
.paeseedang-cta-section {
    padding: 80px 0;
    background-color: #2E7D32;
    color: white;
    text-align: center;
}

.paeseedang-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.paeseedang-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.paeseedang-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.paeseedang-cta-content .paeseedang-button {
    background-color: white;
    color: #2E7D32;
    padding: 15px 30px;
}

.paeseedang-cta-content .paeseedang-button:hover {
    background-color: #f8f9fa;
    color: #1B5E20;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .paeseedang-form-container {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .paeseedang-form-container {
        flex-direction: column;
        padding: 0 30px;
    }
    
    .paeseedang-form-content,
    .paeseedang-form-image {
        width: 100%;
        max-width: 100%;
    }
    
    .paeseedang-form-image {
        margin-top: 40px;
        max-width: 600px;
        align-self: center;
    }
}

@media (max-width: 768px) {
    .paeseedang-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .paeseedang-hero-content p {
        font-size: 1rem;
    }
    
    .paeseedang-form-content h2,
    .paeseedang-faq-section h2,
    .paeseedang-cta-content h2 {
        font-size: 2rem;
    }
    
    .paeseedang-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .paeseedang-hero {
        min-height: 400px;
    }
    
    .paeseedang-contact-form-section,
    .paeseedang-faq-section,
    .paeseedang-cta-section {
        padding: 60px 0;
    }
    
    .paeseedang-button {
        width: 100%;
    }
    
    .paeseedang-form-container {
        padding: 0 15px;
    }
} 