
:root {
  --primary: #0B6E4F;
  --secondary: #08A045;
  --accent: #F9A03F;
  --background: #F8F9FA;
  --text: #333333;
  --light-text: #6C757D;
  --white: #FFFFFF;
  --alert: #DC3545;
  --success: #198754;
  --shadow: rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease-in-out;
}

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

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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


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


.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: #095940;
  color: var(--white);
}

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

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #078338;
  color: var(--white);
}

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

.btn-accent:hover, .btn-accent:focus {
  background-color: #E89030;
  color: var(--white);
}

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

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


.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  flex-direction: column;
}

#mobile-menu {
  display: none;
}

.logo {
  height: 50px;
  width: 200px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover:after, .nav-menu a:focus:after, .nav-menu .active a:after {
  width: 100%;
}


.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
}


.hero {
  position: relative;
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 110, 79, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent);
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.feature-item {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}


.zigzag-section {
  padding: 5rem 0;
}

.zigzag-row {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
}

.zigzag-row:nth-child(even) {
  flex-direction: row-reverse;
}

.zigzag-content,
.zigzag-image {
  width: 50%;
}

.zigzag-content {
  padding: 0 3rem;
}

.zigzag-image img {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow);
  width: 100%;
}


.chart-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.chart-container {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 5px 15px var(--shadow);
  padding: 2rem;
}

.chart-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}


.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 3rem 0;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.pricing-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.875rem;
  opacity: 0.8;
}

.pricing-features {
  padding: 2rem;
  list-style: none;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

footer a {
  color: white;
}

.pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}


.testimonial-slider {
  margin-top: 3rem;
}

.testimonial-item {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 5px 15px var(--shadow);
  margin: 0.5rem;
}

.testimonial-content {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.testimonial-content:before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-author-title {
  font-size: 0.875rem;
  color: var(--light-text);
}


.faq-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 5px var(--shadow);
}

.faq-question {
  background-color: var(--white);
  color: var(--text);
  padding: 1rem 1.5rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(11, 110, 79, 0.05);
}

.faq-question.open {
  background-color: var(--primary);
  color: var(--white);
}

.faq-answer {
  background-color: var(--white);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer.open {
  padding: 1.5rem;
  max-height: 500px;
}


.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px var(--shadow);
  margin: 3rem 0;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--white);
  border: 1px solid #dee2e6;
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(11, 110, 79, 0.25);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.875rem;
}


.contact-info {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px var(--shadow);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: 0.5rem;
}

.contact-map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}


.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.footer-widget h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover, .footer-links a:focus {
  color: var(--white);
  padding-left: 5px;
}

.footer-subscribe input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  width: 100%;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 10px var(--shadow);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  display: none;
}

.cookie-settings.show {
  display: flex;
}

.cookie-settings-content {
  background-color: var(--white);
  border-radius: var(--radius);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-settings-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.cookie-settings-title {
  margin-bottom: 2rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  font-weight: 700;
  margin-bottom: 0;
}

.cookie-category-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-category-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 30px;
}

.cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .cookie-category-slider {
  background-color: var(--primary);
}

input:focus + .cookie-category-slider {
  box-shadow: 0 0 1px var(--primary);
}

input:checked + .cookie-category-slider:before {
  transform: translateX(30px);
}

.cookie-settings-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}


.thanks-section {
  text-align: center;
  padding: 5rem 0;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}


@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .zigzag-row {
    flex-direction: column-reverse !important;
    margin-bottom: 3rem;
  }
  
  .zigzag-content,
  .zigzag-image {
    width: 100%;
  }
  
  .zigzag-content {
    padding: 2rem 0 0 0;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }
  
  .logo {
    height: 40px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .cookie-consent-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
}


.mm-menu {
  background-color: var(--white);
  color: var(--text);
  --mm-color-background: var(--white);
  --mm-color-text: var(--text);
  --mm-color-button: var(--primary);
  --mm-color-border: rgba(0, 0, 0, 0.1);
}

.mm-listitem:after {
  left: 0;
}

.mm-listitem_selected > .mm-listitem__text {
  background-color: rgba(11, 110, 79, 0.05);
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}