#home-contact {
}

#home-contact .header {
    text-align: center;
    margin-bottom: 64px;
}

#home-contact .header h2 {
    /*font-family: Georgia, serif;*/
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: bold;
    margin-bottom: 16px;
    color: #1a1a1a;
}

#home-contact .header p {
    color: #666;
    font-size: 1rem;
}

/* Contact Grid */
#home-contact .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    gap-column: 96px;
}

@media (max-width: 1024px) {
    #home-contact .grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Contact Info Section */
#home-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(50, 103, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #326753;
}

.contact-content h3 {
    /*font-family: Georgia, serif;*/
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-content p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    /*font-family: Georgia, serif;*/
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

#home-contact label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
}

#home-contact input,
#home-contact textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 0.5rem;
    /*font-family: inherit;*/
    font-size: 1rem;
    background-color: transparent;
    transition: all 0.2s ease;
}

#home-contact input:focus,
#home-contact textarea:focus {
    outline: none;
    border-color: #326753;
    box-shadow: 0 0 0 3px rgba(50, 103, 81, 0.1);
}

#home-contact textarea {
    resize: vertical;
    min-height: 150px;
}

#home-contact button {
    width: 100%;
    padding: 10px 16px;
    background-color: #326753;
    color: #ffffff;
    border: 1px solid #326753;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 36px;
}

#home-contact button:hover {
    background-color: #245044;
    border-color: #245044;
}

#home-contact button:active {
    transform: scale(0.98);
}
