 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
        }
        /* Header Section */
.header-container {
    margin: 30px auto;
    text-align: center;
  }
  
  .animated-header {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #0c3572;
    border-bottom: 3px solid #0c3572;
    animation: slideIn 1.5s ease-out, bounce 1s ease-in-out 1.5s;
  }
        .contaiiner {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
            min-height: 100vh;
            padding: 20px;
        }
        .contact-form, .contact-info {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin: 10px;
            flex: 1 1 300px;
            max-width: 600px;
        }
        .contact-info {
            text-align: center;
        }
        h2 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ced4da;
            border-radius: 4px;
        }
        .form-group textarea {
            resize: vertical;
        }
        .btn-submit {
            background-color: #004085;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        .btn-submit:hover {
            background-color: #003366;
        }
        .contact-info p {
            margin: 10px 0;
        }
        .contact-info a {
            color: #004085;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        .map-container {
            margin-top: 20px;
        }
        iframe {
            width: 100%;
            height: 300px;
            border: 0;
            border-radius: 8px;
        }
        .social-icons {
            margin-top: 20px;
        }
        .social-icons a {
            margin: 0 10px;
            color: #004085;
            font-size: 24px;
            text-decoration: none;
        }
        .social-icons a:hover {
            color: #003366;
        }
        @media (max-width: 768px) {
            .contact-form, .contact-info {
                flex: 1 1 100%;
            }
        }