.elementor-229 .elementor-element.elementor-element-a5e84dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-229 .elementor-element.elementor-element-a7ec17e{transition:all 400ms;}/* Start custom CSS for html, class: .elementor-element-a7ec17e */* {
    box-sizing: border-box;
    font-family: 'Sarabun', sans-serif;
}

.contact-container {
    background: #ffffff;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
}

.info-header p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}

.info-details {
    margin: 40px 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    margin-right: 15px;
    color: #00d2ff;
    width: 30px;
    text-align: center;
}

.info-item span {
    font-size: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 20px;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00d2ff;
}

.contact-form-wrapper {
    padding: 40px;
    flex: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2a5298;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #2a5298;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1e3c72;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info {
        padding: 30px;
    }
    .info-details {
        margin: 30px 0;
    }
    .contact-form-wrapper {
        padding: 30px;
    }
}/* End custom CSS */