.contact_main_wrapper {
    padding: 80px 10%;
    text-align: center;
    background-color: #f9f9f9;
}

.contact_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-top: 50px;
}

.contact_info_box {
    flex: 1;
    text-align: left;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.info_item h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.contact_form_box {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact_input, .contact_textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
}

.contact_input:focus, .contact_textarea:focus {
    border-color: red;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .contact_container {
        flex-direction: column;
    }
}

.menu.active {
    color: red !important;
    font-weight: bold;
}