body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .contact-header {
    text-align: center;
    padding: 50px 20px;
    background-color: #023b6d;
    color: #fff;
}

.contact-header img {
    max-width: 300px;
    height: auto;
    margin-top: -50px;
    margin-bottom: 20px;
}

.contact-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 18px;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-header img {
        max-width: 200px;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-header img {
        max-width: 150px;
    }

    .contact-header h1 {
        font-size: 24px;
    }

    .contact-header p {
        font-size: 14px;
    }
}


        .contact-form {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-top: -30px;
        }

        .contact-form h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #023b6d;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .form-group textarea {
            resize: vertical;
            height: 150px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #023b6d;
            outline: none;
        }

        .form-group button {
            background-color: #023b6d;
            color: #fff;
            padding: 12px 20px;
            font-size: 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-group button:hover {
            background-color: #1a5a8f;
        }

        .alert {
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid transparent;
            border-radius: 4px;
        }

        .alert-success {
            color: #3c763d;
            background-color: #dff0d8;
            border-color: #d6e9c6;
        }

        .alert-danger {
            color: #a94442;
            background-color: #f2dede;
            border-color: #ebccd1;
        }

        .contact-info {
            margin-top: 40px;
            text-align: center;
        }

        .contact-info p {
            font-size: 16px;
            margin: 5px 0;
            color: #333;
        }

        .contact-info p i {
            color: #023b6d;
            margin-right: 10px;
        }

        .map {
            margin-top: 40px;
            border-radius: 8px;
            overflow: hidden;
        }

        .map iframe {
            width: 100%;
            border: 0;
            height: 400px;
        }
        .home-link {
            position: absolute;
            top: 20px;
            left: 20px;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            background-color: #ff1744;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .home-link:hover {
            background-color: #023b6d;
        }