@import url(https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800);
* {
  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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Manrope", 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;
  font-family: Manrope;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.terms p {
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* Global Styles */
:root {
  --primary: #00b140;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --gray: #f0f0f0;
  --text: #333;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

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

.primary-btn:hover {
  background-color: #009935;
}

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

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

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

.white-btn:hover {
  background-color: #f0f0f0;
}

.full-width {
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 60px 0;
}

.hero-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.subtitle {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero p {
  margin-bottom: 30px;
  color: var(--text);
}

/* Solutions Section */
.solutions {
  padding: 60px 0;
  background-color: var(--light);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.solution-content {
  padding: 20px;
}

.solution-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.solution-content h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

/* About Section */
.about {
  color: #fff;
  background: #000 url(../images/bg.png) center / cover no-repeat;

  padding: 60px 0;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-text {
  flex: 1;
  text-align: center;
}

.about-text h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #fff;
}

.about-text p {
  margin-bottom: 20px;
}

/* Contact Section */
.contact {
  color: #fff;
  margin-top: 60px;
  background: #000 url(../images/bg2.png) center / cover no-repeat;

  padding: 60px 0;
  background-color: var(--gray);
}

.contact-content {
  display: flex;
  gap: 40px;
  align-items: center;
  color: #fff;
}

.contact-text {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.contact-text h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #fff;
}

.contact-text p {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

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

/* Footer Styles */
footer {
  background-color: white;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

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

.footer-links {
  display: flex;
  gap: 20px;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 440px;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

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

.cookie-content h3 {
  margin-bottom: 10px;
}

.cookie-content p {
  margin-bottom: 20px;
}

.cookie-content a {
  color: white;
  text-decoration: underline;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 100px 0;
}

.thank-you h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thank-you p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

  .hero-content,
  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .hero-text,
  .hero-image,
  .about-text,
  .about-image,
  .contact-text,
  .contact-form {
    width: 100%;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transform: translateY(-300%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  nav.active {
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

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

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

/* Thank You Page Styles */
.return-btn {
  display: inline-block;
  margin-top: 20px;
}
