* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.contact-container {
    max-width: 1900px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    background: #fff;
    border-radius: 10px;

    overflow: hidden;
}

.contact-form {
    flex: 1;
    padding: 40px;
    border-right: 1px solid #eee;
}

.contact-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #003087;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

input:focus, textarea:focus {
    border-color: #003087;
    outline: none;
}

textarea {
    height: 120px;
    resize: vertical;
}

.btn1 {
    width: 6.5em;
    height: 2.3em;
    margin: 0.5em 0;
    background: #003087;
    color: white;
    border: none;
    border-radius: 0.625em;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s;
}

.btn1:hover {
    color: white;
}

.btn1:after {
    content: "";
    background: #2980b9;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

.btn1:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 20px;
    color: #003087;
    margin-right: 15px;
    margin-top: 3px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.info-content p {
    color: #7f8c8d;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

.form-container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}
.btn-custom {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #fff;
    border: none;
}
.btn-custom:hover {
    background: linear-gradient(135deg, #3e8e41, #1B5E20);
}