@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=Lexend+Deca:100,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: linear-gradient(180deg, #030504 0%, #356f34 50.96%, #030504 100%);
  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: "Lexend Deca";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  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;
  }
}
/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #121212;
}

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

h1,
h2,
h3,
h4 {
  margin-bottom: 15px;
  font-weight: bold;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: #fff;
}

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

.btn {
  display: inline-block;
  background-color: #32e875;
  color: #000;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #2bc866;
}

/* Header */
header {
  background-color: #238239;
  padding: 15px 0;
  text-align: center;
  border-radius: 30px;
  margin: 10px auto;
  max-width: 1200px;
  width: 100%;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
  display: block;
  width: fit-content;
  margin-inline: auto;
}

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

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-text {
  max-width: 567px;
  width: 100%;
  margin-right: 30px;
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 250px;
}

/* About Section */
.about {
  padding: 50px 0;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

.about-text {
  flex: 1;
  min-width: 300px;
  margin-right: 30px;
}

.about-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
}

/* Services Section */
.services {
  padding: 50px 0;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services h3 {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

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

.service-card {
  background-color: rgba(35, 130, 57, 0.2);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

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

.service-image {
  margin-bottom: 15px;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  max-height: 100%;
  object-fit: cover;
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.price {
  font-weight: bold;
  color: #32e875;
  margin-top: 20px;
}

/* Contact Section */
.contact {
  padding: 50px 0;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact h3 {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.contact-info,
.contact-question,
.contact-answer {
  max-width: 800px;
  margin-bottom: 20px;
}

.contact-question {
  font-weight: bold;
}

form {
  max-width: 600px;
  margin: 40px 0;
}

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

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 5px;
  color: #fff;
}

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

::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.company-info {
  margin-top: 50px;
}

.company-info p {
  margin-bottom: 5px;
}

/* Footer */
footer {
  background-color: #238239;
  padding: 15px 0;
  text-align: center;
  margin-top: 50px;
  border-radius: 30px;
  max-width: 1200px;
  margin: 10px auto;
}

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

.copyright {
  margin-bottom: 10px;
}

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

.footer-links a {
  margin: 0 10px;
  font-size: 0.8rem;
}

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

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

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

@media (max-width: 767px) {
  .hero-text,
  .about-text {
    margin-right: 0;
    margin-bottom: 30px;
  }

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

  .hero-image,
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }

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

  .footer-links {
    flex-direction: column;
  }

  .footer-links a {
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 1.5rem;
  }

  .about h2,
  .services h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .services h3,
  .contact h3 {
    font-size: 1.1rem;
  }
}

/* Thank-you page styles */
.thank-you-page {
  text-align: center;
  padding: 80px 0;
}

.thank-you-page h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto 50px;
}

.back-button {
  display: inline-block;
}
