body {
            margin: 0;
            font-family: Arial, sans-serif;
    overflow-x: hidden
        }

        .navbar {
            background-color: #ffd700;
            overflow: hidden;
            padding: 15px;
            text-align: center;
        }

        .navbar a {
            display: inline-block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

        .navbar-logo {
            display: inline-block;
            margin-right: 20px;
        }

        .navbar-logo img {
            max-width: 100%;
            height: auto;
        }

        .navbar-toggle {
            display: none;
        }
  .contact-form {
            max-width: 400px;
            margin: 50px auto;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            z-index: 1;
            position: relative;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 16px;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .contact-form button {
            background-color: #4caf50;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .contact-form button:hover {
            background-color: #45a049;
        }

.responsive-footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-section {
  flex: 1;
  margin: 10px;
}

.footer-section h3 {
  color: #ffd700; /* Golden color for headings */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  text-decoration: none;
  color: #fff;
}

.footer-section p {
  font-size: 14px;
}

.social-icons {
  font-size: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  background-color: #222;
}








 @media screen and (max-width: 600px) {
            .navbar a {
                display: block;
                width: 100%;
                text-align: left;
            }

            .navbar-toggle {
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
            }

            .navbar-links {
                display: none;
                width: 100%;
                text-align: center;
            }

            .navbar-links.show {
                display: block;
            }
}