body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #ffffff;
  color: black;
}

.navbar .logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  background: #555;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #222;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* Footer */
    footer {
        background: #f8f8f8;
        padding: 40px 20px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    .footer-logo {
        flex: 1 1 200px;
    }

    .footer-logo img {
        width: 50px;
        height: auto;
        margin-bottom: 10px;
    }

    .footer-section {
        flex: 1 1 150px;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        text-decoration: none;
        color: #000;
        font-size: 0.95rem;
    }

    .footer-section ul li a:hover {
        text-decoration: underline;
    }

    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .social-icons a {
        font-size: 1.2rem;
        color: #000;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .cta-section h1 {
            font-size: 1.5rem;
        }

        .cta-section p {
            font-size: 1rem;
        }

        .footer-container {
            flex-direction: column;
            text-align: center;
        }

        .footer-section {
            margin-top: 20px;
        }

        .social-icons {
            justify-content: center;
        }
    }