@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url(https://fonts.googleapis.com/css?family=Monomaniac+One:regular);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}
.p0 {
  padding: 0 !important;
}
textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  /* background: #000 url(../images/bg.png) center / cover no-repeat; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  color: #2a2a2a;
  text-align: center;
  font-family: "Monomaniac One";
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.terms p {
  color: #2a2a2a;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.btn {
  display: inline-block;
  background-color: #e6ff00;
  color: #333;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.hidden {
  display: none;
}

/* Layout & Container */
section {
  padding: 4rem 2rem;
}

/* Navigation */
header {
  background-color: #e6ff00;
}
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

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

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  position: relative;
}

.nav-links a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #333;
  bottom: -4px;
  left: 0;
  transition: width 0.3s;
}

.nav-links a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  margin-bottom: 2rem;
}

/* Stats Section */
.b1 {
  background-color: #e6ff00;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item h2 {
  font-size: 1rem;
  font-weight: bold;
}

/* About Section */
.about {
  text-align: center;
  background-color: #f8f8f8;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.about-column h3 {
  margin-bottom: 1rem;
}

/* Services Section */
.services h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.services > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.service-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-text h2 {
  text-align: left;
}

.service-text p {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  background-color: #f8f8f8;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.faq-item {
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: bold;
}

/* Contact Section */
.contact {
  text-align: center;
}

.contact h2 {
  margin-bottom: 1rem;
}

.contact > p {
  max-width: 800px;
  margin: 0 auto 3rem;
}

form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 3rem;
}

form input,
form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

form textarea {
  min-height: 150px;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #e6ff00;
  padding: 1.5rem 2rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-links a {
  margin-left: 1.5rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #e6ff00;
  padding: 1rem;
  z-index: 1001;
}

.cookie-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.btn-cookie {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 1rem;
}

/* Thank You Page */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you h1 {
  margin-bottom: 0.5rem;
}

.thank-you a.btn {
  margin-top: 2rem;
}

/* Animation & Effects */
.fade-in {
  animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error {
  border: 1px solid #ff3333 !important;
  background-color: rgba(255, 0, 0, 0.05);
}

/* Mobile Navigation */
.nav-links.mobile-active {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.nav-links.mobile-active li {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .main-nav {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-links {
    margin-top: 1rem;
  }

  .nav-links li {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-image {
    order: -1;
  }

  .about-columns,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    margin-top: 1rem;
  }

  .footer-links a {
    margin: 0 0.75rem;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    margin: 0.5rem;
  }
}
