@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=Krona+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: 150px 50px;
}

.terms__title {
  color: #2a2a2a;
  text-align: center;
  font-family: "Krona 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;
  }
  .nav-links {
    display: none !important;
  }
}
/* Global Styles */
:root {
  --primary-color: #8000ff;
  --primary-light: #a96eff;
  --primary-dark: #6200c9;
  --secondary-color: #f4f4f4;
  --text-color: #333;
  --light-text: #fff;
  --dark-text: #222;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  border: none;
  transition: var(--transition);
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
}

section {
  padding: 5rem 0;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-color);
  color: var(--light-text);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links a {
  margin-left: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* 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: var(--light-text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
}

.hero-content {
  max-width: 800px;
  padding: 0 1.5rem;
}

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

.btn-container {
  margin-top: 2rem;
}

/* Services Section */
.services {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/bg2.png");
  background-size: cover;
  background-position: center;
  background-color: var(--primary-color);
  color: var(--light-text);
}
form button {
  width: 100%;
  display: block;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Insights Section */
.insights {
  background-color: var(--secondary-color);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.insight-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-5px);
}

.insight-image {
  height: 200px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card h3,
.insight-card p {
  padding: 0 1.5rem;
}

.insight-card h3 {
  padding-top: 1.5rem;
}

.insight-card p {
  padding-bottom: 1.5rem;
}

/* Contact Section */
.contact form {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 1.5rem 0;
}

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

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

.footer-links a:hover {
  opacity: 0.8;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  max-width: 440px;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 1.5rem;
  z-index: 1001;
  display: none;
}

.cookie-notice.show {
  display: block;
}

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

.cookie-content h3 {
  margin-bottom: 0.5rem;
}

.cookie-content button {
  margin-top: 1rem;
  background-color: #fff;
  color: #6200c9;
  border-radius: 50px;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero {
    min-height: 70vh;
  }

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

  .about-image {
    margin-top: 2rem;
    order: -1;
  }

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

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

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

@media (max-width: 576px) {
  .main-nav {
    flex-direction: column;
    text-align: center;
  }

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

  .nav-links a {
    margin: 0 0.5rem;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 7rem;
  }

  section {
    padding: 3rem 0;
  }
}
