body {
    background-color: #e8e8e8;
    font-family: Arial, sans-serif;
}

#contact-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#contact-wrapper {
    max-width: 900px;
    width: 100%;
}

#contact-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

#contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

#contact-info-section {
    flex: 0 0 280px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #ffa366;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon {
    color: white;
    font-size: 1.2rem;
}

.contact-info-text h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-text p {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
}

#contact-form-section {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #ffa366;
}

#message-textarea {
    min-height: 120px;
    resize: vertical;
}

#submit-button {
    width: 100%;
    padding: 15px;
    background-color: #ffa366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#submit-button:hover {
    background-color: #ff8c4d;
}

@media (max-width: 768px) {
    #contact-content {
        flex-direction: column;
    }
    
    #contact-info-section {
        flex: 1;
        width: 100%;
    }
}