* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Georgia', serif;
  background: url('https://i.ibb.co/rfwX1KFK/wmremove-transformed-2.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

.navbar {
  font-family: 'Arial',serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 28px;
}

.icon {
  font-size: 45px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cta a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.btn {
  background-color: white;
  color: black;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.btn.white {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 90vh;
  padding: 40px;
}

.hero-content h1 {
  font-size: 60px;
  margin: 20px 0;
}

.hero-content h1 span {
  display: block;
  font-size: 58px;
  font-weight: normal;
}

.subtext {
  font-size: 12px;
  margin-bottom: 30px;
  opacity: 0.8;
  letter-spacing: 0.8px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.logos {
  opacity: 0.7;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}


 .footer {
            background: rgba(0, 0, 0, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 20px;
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-copyright a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #764ba2;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            align-items: center;
            
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }
