/* Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --primary-color: #48b57f;
  --secondary-color: #ffffff;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #666666;
  --transition: all 0.3s ease;
}

body {
  font-family: "Urbanist", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #ffffff;
}

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

a {
  text-decoration: none;
  color: var(--primary-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
a:hover {
  color: #399165;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}
.cta-section h2 {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.cta-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
}
.cta-section .cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .cta-section .cta-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .cta-section .cta-form {
    grid-template-columns: 1fr;
  }
}
.cta-section .cta-form .form-group input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
}
.cta-section .cta-form .form-group input:focus {
  outline: none;
}
.cta-section .cta-form button {
  background-color: white;
  color: var(--primary-color);
}
.cta-section .cta-form button:hover {
  background-color: #f2f2f2;
}
@media (max-width: 992px) {
  .cta-section .cta-form button {
    grid-column: span 2;
  }
}
@media (max-width: 576px) {
  .cta-section .cta-form button {
    grid-column: auto;
  }
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 3rem 0 1.5rem;
}
footer a {
  color: var(--secondary-color);
}
footer a:hover {
  color: var(--primary-color);
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
footer .footer-grid .footer-info p {
  margin-bottom: 0.5rem;
}
footer .footer-grid .footer-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 576px) {
  footer .footer-grid .footer-links ul {
    grid-template-columns: 1fr;
  }
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}
footer .copyright p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

ul {
  list-style: none;
}

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

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

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 4rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}
.btn-primary:hover {
  background-color: #41a372;
  color: white;
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.5rem;
  display: none;
}
.cookie-banner.active {
  display: block;
}
.cookie-banner .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-banner .cookie-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.cookie-banner .cookie-content p {
  margin-bottom: 1rem;
}
.cookie-banner .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 576px) {
  .cookie-banner .cookie-content .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  background-color: white;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
}
header .header-content .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-content .logo img {
  width: 100%;
  max-width: 160px;
}
header .header-content .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  header .header-content .main-nav ul {
    display: none;
  }
}
header .header-content .mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}
header .header-content .mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 992px) {
  header .header-content .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header.mobile-menu-open .main-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
header.mobile-menu-open .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem 2rem;
  gap: 1rem;
}
header.mobile-menu-open .main-nav ul li {
  width: 100%;
}
header.mobile-menu-open .main-nav ul li a {
  display: block;
  width: 100%;
}
header.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
      -ms-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
header.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}
header.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
      -ms-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  background-image: url("../assets/i (2).png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
  text-align: center;
}
.hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-section .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-section .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
}
.contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .contact-section .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact-section .contact-content .contact-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-section .contact-content .contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact-section .contact-content .contact-form .form-group {
  margin-bottom: 1.2rem;
}
.contact-section .contact-content .contact-form .form-group input,
.contact-section .contact-content .contact-form .form-group select,
.contact-section .contact-content .contact-form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
}
.contact-section .contact-content .contact-form .form-group input:focus,
.contact-section .contact-content .contact-form .form-group select:focus,
.contact-section .contact-content .contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.contact-section .contact-content .contact-form .form-group textarea {
  resize: vertical;
}
.contact-section .contact-content .contact-form button {
  width: 100%;
}

/* Services Section */
.services-section {
  text-align: center;
}
.services-section h2 {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.services-section > p {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.services-section .services-grid .service-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
}
.services-section .services-grid .service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.services-section .services-grid .service-card p {
  margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
  background-color: var(--light-gray);
  text-align: center;
}
.stats-section h2 {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.stats-section > p {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.stats-section .stats-grid .stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.stats-section .stats-grid .stat-item p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
  text-align: center;
}
.why-choose-section h2 {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.why-choose-section > p {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.why-choose-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.why-choose-section .features-grid .feature-card {
  padding: 1.5rem;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
}
.why-choose-section .features-grid .feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.why-choose-section .features-grid .feature-card p {
  margin-bottom: 0;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-gray);
  text-align: center;
}
.blog-section h2 {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.blog-section > p {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.blog-section .blog-grid .blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.blog-section .blog-grid .blog-card .blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-section .blog-grid .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.blog-section .blog-grid .blog-card .blog-image img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-section .blog-grid .blog-card h3 {
  font-size: 1.3rem;
  padding: 1.5rem 1.5rem 0.5rem;
}
.blog-section .blog-grid .blog-card .btn {
  margin: 0 1.5rem 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
  text-align: center;
}
.testimonials-section h2 {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.testimonials-section > p {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.testimonials-section .testimonials-grid .testimonial-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonials-section .testimonials-grid .testimonial-card .testimonial-author {
  font-weight: 600;
  text-align: right;
  margin-bottom: 0;
}

.text-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 60px 0;
}
.text-section h2 {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
}
.text-section p {
  font-family: Urbanist;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #78787A;
}