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;
        }


        header {
            background-color: #333;
            color: #fff;
            padding: 10px;
            text-align: center;
        }

        main {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }

        article {
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            overflow: hidden;
        }

        article img {
            width: 100%;
            height: auto;
        }

        h2 {
            color: #333;
        }

        p {
            color: #555;
        }

        .cta {
            text-align: center;
            margin-top: 20px;
        }

        .cta a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #333;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
        }


.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;
}

  @keyframes marquee {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(-100%);
            }
        }



@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;
            }
}    