@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=Jersey+25: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: #303030;
  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: #fff;
  text-align: center;
  font-family: "Jersey 25";
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.terms p {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* General Styles */
:root {
  --primary-color: #ffa600;
  --secondary-color: #222222;
  --text-color: #ffffff;
  --text-dark: #222222;
  --background-dark: #2a2a2a;
  --background-light: #ffffff;
  --button-hover: #e69500;
  --transition: all 0.3s ease;
}

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

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

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

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

ul {
  list-style: none;
}

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

p {
  margin-bottom: 1rem;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

/* Navigation */
nav {
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.nav-menu {
  display: flex;
  gap: 2rem;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  color: var(--text-color);
  padding: 5rem 0;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

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

/* About Section */
.about {
  padding: 5rem 0;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

/* Strengths Section */
.strengths {
  padding: 5rem 0;

  color: var(--text-color);
}

.strengths h2 {
  margin-bottom: 2rem;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.strength-item {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: var(--transition);
}

.strength-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.strength-item h3 {
  color: var(--primary-color);
}

/* Solutions Section */
.solutions {
  padding: 5rem 0;
}

.solutions-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.solutions-text {
  flex: 1;
}

.solutions-image {
  flex: 1;
}

/* Experts Section */
.experts {
  padding: 5rem 0;

  color: var(--text-color);
}

.experts-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.experts-text {
  flex: 1;
}

.experts-image {
  flex: 1;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-form-container {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

h1,
h2 {
  color: #fa0;
}
p {
  color: #fff;
}
input,
textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  background-color: #f2f2f2;
}

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

.submit-btn {
  margin-top: 1rem;
}

.contact-image {
  flex: 1;
}

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

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

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

.footer-links {
  display: flex;
  gap: 2rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 440px;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 20px;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-content {
  max-width: 600px;
  text-align: center;
}
.cookie-notice * {
  color: #474747;
}

.cookie-btn {
  margin-top: 1rem;
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.cookie-btn:hover {
  background-color: #444;
}

.hidden {
  display: none;
}

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

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

/* Media Queries */
@media (max-width: 992px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .about-content,
  .solutions-content,
  .experts-content,
  .contact-form-container {
    flex-direction: column;
  }

  .about-image,
  .solutions-image,
  .experts-image,
  .contact-image {
    margin-top: 2rem;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}

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

  .btn {
    padding: 0.7rem 1.5rem;
  }
}
footer a {
  color: #fff;
}
