@import url(https://fonts.googleapis.com/css?family=Unbounded:200,300,regular,500,600,700,800,900);
* {
  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: "Unbounded", 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: #000;
  text-align: center;
  font-family: Unbounded;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
  margin-bottom: 48px;
}
.terms.cookie a {
  word-break: break-all;
}
.terms a,
.terms p {
  color: #000;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* Base styles and reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #000;
  --secondary-color: #fff;
  --accent-color: #f5f5f5;
  --gray-color: #333;
  --container-width: 1200px;
  --heading-font: "Arial", sans-serif;
  --body-font: "Arial", sans-serif;
}

body {
  font-family: var(--body-font);
  color: var(--primary-color);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
}

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

ul,
ol {
  list-style-position: inside;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 1px solid var(--primary-color);
  border-radius: 50px;
}

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

.btn-text {
  padding: 0.5rem 0;
  position: relative;
}

.btn-text:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.btn-text:hover:after {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 50px;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
}

.btn-submit {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 50px;
  margin-top: 1rem;
}

.arrow {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

/* Header */
header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background-color: var(--secondary-color);
  z-index: 1000;
}

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

.logo a {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 3rem 0 6rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.hero-arrow .arrow {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.hero-arrow:hover .arrow {
  transform: translateY(10px);
}

.hero-image {
  overflow: hidden;
  border-radius: 20px;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--secondary-color);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.about-header h2 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-text p {
  font-size: 1.1rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--secondary-color);
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.service-card {
  background-color: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card p {
  margin-bottom: 2rem;
}

.card-arrow {
  margin-top: auto;
  align-self: flex-end;
}

.card-arrow .arrow {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.card-arrow:hover .arrow {
  transform: translate(10px, 10px);
}

/* Clients Section */
.clients {
  padding: 5rem 0;
}

.clients h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.clients-list {
  margin-bottom: 3rem;
  list-style-type: decimal;
}

.clients-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background-color: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin-bottom: 2rem;
  font-style: italic;
}

/* Footer */
footer {
  padding: 5rem 0;
  background-color: #000;
  color: #fff;
}

form {
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
}

input {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
}

input:focus {
  outline: none;
  border-color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  margin: 0 1rem;
  color: #fff;
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #fff;
}

.copyright {
  text-align: center;
  color: #999;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 1.5rem 0;
  z-index: 1000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 200px;
  width: 100%;
  flex-shrink: 0;
}

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

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

/* Responsive design */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }

  .hero-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  nav ul li {
    margin-left: 1.5rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

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

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }
  header nav ul li {
    margin: 0;
  }
  header nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }
  header .btn-outline {
    display: none;
  }
  nav {
    margin: 1.5rem 0;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 0.5rem 0;
    margin-left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .hero-content p {
    margin: 1.5rem auto 2.5rem;
  }

  .hero-image {
    order: 1;
    margin-bottom: 2rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cookie-container {
    flex-direction: column;
  }

  .cookie-text {
    text-align: center;
  }

  .cookie-buttons {
    max-width: initial;
    width: 100%;
    align-items: initial;
  }
  .cookie-buttons button {
    width: 100%;
    display: block;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
  }
}

.card-arrow {
  display: block;
  width: 100px;
  height: 100px;
}
