.custom-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: #333;
}

.custom-contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.custom-contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #074799;
}

.custom-contact-subtitle {
    font-size: 18px;
    color: #555;
}

.custom-contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.custom-contact-info {
    flex: 1 1 40%;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custom-contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #074799;
}

.custom-contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.custom-contact-info a {
    color: #10b981;
    text-decoration: none;
}

.custom-contact-info a:hover {
    text-decoration: underline;
}

.custom-contact-form {
    flex: 1 1 55%;
    background: #074799;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custom-contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.custom-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.custom-contact-form button {
    background-color: #10b981;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-contact-form button:hover {
    background-color: #0e9e74;
}

.form-success {
    color: #10b981;
    font-weight: bold;
    margin-bottom: 15px;
}

.custom-contact-map {
    margin-top: 40px;
}

.custom-contact-map h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #074799;
}

.custom-contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-contact-content {
        flex-direction: column;
    }

    .custom-contact-info,
    .custom-contact-form {
        flex: 1 1 100%;
    }
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page-title {
    font-size: 36px;
    font-weight: bold;
    color: #074799;
}

.contact-page-subtitle {
    font-size: 18px;
    color: #555;
}

.contact-page-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info-section {
    flex: 1 1 40%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #074799;
}

.contact-info-section p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-info-section a {
    color: #10b981;
    text-decoration: none;
}

.contact-info-section a:hover {
    text-decoration: underline;
}

.contact-form-section {
    flex: 1 1 55%;
    background: #074799;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form button {
    background-color: #10b981;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0e9e74;
}

.form-success {
    color: #10b981;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-page-content {
        flex-direction: column;
    }

    .contact-info-section,
    .contact-form-section {
        flex: 1 1 100%;
    }
}
