 body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    background-color:black
  }

  html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
    scroll-behavior: smooth;
  }
  
  .antet {
  background-color: black;
  padding: 10px 0;
  text-align: left center;
  border-bottom: 1px solid #ddd;
}

.antet-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.antet-text {
  flex: 1;
  min-width: 250px;
  color: white;
}

.antet h1 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.contact-info {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1;
  color: white;
}

.contact-info a {
  text-decoration: none;
  color: white;
}

.antet-image {
  flex-shrink: 0;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.antet-image img {
  max-height: 60px;
  width: auto;
}

.insta {
  max-height: 17px;
}

.insta a{
    text-decoration: none;
  color: white;
}
  
  .top-header {
    background: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
  }
  
  .social-icons a {
    margin-left: 10px;
    text-decoration: none;
  }
  
  .main-nav {
    background: #090909;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #0e2d64;
  }
  
  .logo small {
    font-size: 14px;
    font-weight: normal;
  }
  .menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
  }

  .menu li {
    display: flex;
    align-items: center;
  }
  
  .menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
  }

  .menu li img {
    width: 24px;
    height: 24px;
  }
  
 .terms-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background: linear-gradient(180deg, #000 0%, #111 100%);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 700;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #fff;
}

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-anpc {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.footer-anpc img {
  max-height: 50px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

.socials a {
  color: #ccc;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.socials a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }

  .main-nav {
    flex-direction: column;
    padding: 15px 20px;
  }

  .menu {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    align-items: center;
  }

  .menu li a {
    font-size: 16px;
  }

  .logo {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }

  .logo img {
    max-width: 120px;
    height: auto;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links div a {
    margin: 5px 0;
  }

  .footer-anpc {
    justify-content: center;
  }

  .terms-container {
    margin: 50px 15px;
    padding: 25px;
  }

  .terms-container h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .terms-container p {
    font-size: 0.95rem;
  }


}