@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&display=swap');

body,
html {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 16px;
  background-color: rgba(33, 41, 49, 1);
  width: 100%;
  height: 100%;
  font-weight: 400;
  scroll-behavior: smooth;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  font-weight: bold;
  margin-top: 26px;
  margin-bottom: 25px;
}

h3 {
  font-size: 26px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
  margin: 12px 0;
}

li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}

ul {

  list-style-type: disc;
  list-style-type: none;
  padding-left: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.container {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

header {
  background-color: #1f2f38;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.sile-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu .logo {
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  font-size: 18px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover {
  background-color: #4CAF50;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.header-buttons .login-btn,
.header-buttons .register-btn {
  background-color: #1f2f38;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
}

.header-buttons .register-btn {
  background-color: #4CAF50;
}

.menu .hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu .hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #1f2f38;
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  padding: 20px;
  transition: right 0.4s ease;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
}

.mobile-menu .login-btn,
.mobile-menu .register-btn {
  width: 100%;
  padding: 10px;
  font-size: 18px;
}

.mobile-menu .close-menu {
  background: none;
  color: white;
  font-size: 30px;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  padding: 0;
}

.mobile-menu.active {
  right: 0;
  z-index: 1;
}

.basic-blockStyle {
  background-color: #18242f;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0 20px 0;
}

.top-space {
  margin-top: 91px;
}

.imgBox {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

.faq-container {
  margin: 0 auto;
  padding: 20px;
}
.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.faq-question {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 15px;
  background-color: #18242f;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 15px;
  background-color: #18242f;
  overflow: hidden;
  transition: max-height 0.5s ease;
  max-height: 0;
}
.faq-question .toggle-icon {
  font-size: 24px;
}

.btn-position{
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.custom-btn {
  background-color: #4CAF50;
  border: none;
  color: white; 
  padding: 10px 20px;
  font-size: 16px; 
  border-radius: 4px; 
  cursor: pointer; 
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn:hover {
  background-color: #45a049; 
  transform: translateY(-2px); 
}


.custom-btn:active {
  background-color: #397d3f;
}

@media (max-width: 800px) {
  .nav-menu {
    display: none;
  }

  .menu .hamburger {
    display: flex;
  }

  .header-buttons {
    display: none;
  }

  .menu .logo {
    padding: 15px 0;
  }
}


@media (max-width: 600px) {
  .menu {
    padding: 10px;
  }

  .menu .logo {
    font-size: 20px;
    padding: 15px 0;
  }

  .menu .hamburger div {
    width: 20px;
    height: 2px;
  }

  .mobile-menu a {
    padding: 10px 0;
    font-size: 18px;
  }

  .mobile-menu .login-btn,
  .mobile-menu .register-btn {
    font-size: 18px;
  }
}

footer {
  background-color: #1f2f38;
}

.footer-content {
  padding: 20px;
  text-align: center;
}
