/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #27ae60;
  color: white;
}

.btn-primary:hover {
  background-color: #219a52;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #27ae60;
  border: 2px solid #27ae60;
}

.btn-secondary:hover {
  background-color: #27ae60;
  color: white;
}

.btn-tertiary {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.btn-tertiary:hover {
  background-color: #e9ecef;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-content p,
.footer p{
  color: #fff !important;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

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

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

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

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #27ae60;
}

.logo {
  height: 40px;
  width: auto;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #27ae60;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
  padding: 4rem 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

/* Sections */
.services,
.advantages,
.company-info,
.testimonials,
.faq,
.blog,
.newsletter,
.contact {
  padding: 4rem 0;
}

.services {
  background-color: #f8f9fa;
}

.company-info {
  background-color: #f8f9fa;
}

.newsletter {
  background-color: #2c3e50;
  color: white;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #27ae60;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-item {
  text-align: center;
  padding: 1.5rem;
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.advantage-item h3 {
  color: #27ae60;
  margin-bottom: 1rem;
}

/* Company Info */
.company-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.company-text {
  flex: 1;
}

.company-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.company-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #27ae60;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-author {
  margin-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: #27ae60;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #666;
}

/* FAQ */
.faq-list {
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background-color: #f8f9fa;
  border: none;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #e9ecef;
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 200px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
}

.blog-content h3 a {
  text-decoration: none;
  color: #2c3e50;
}

.blog-content h3 a:hover {
  color: #27ae60;
}

.blog-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* Newsletter */
.newsletter {
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  color: #bdc3c7;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  color: #27ae60;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: #27ae60;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  text-decoration: underline;
}

.subscription-form {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.subscription-form h3 {
  margin-bottom: 1.5rem;
  color: #27ae60;
}

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

.subscription-form input,
.subscription-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input {
  margin-top: 2px;
}

.checkbox-label a {
  color: #27ae60;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #001208;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: #27ae60;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
}

.footer-section a:hover {
  color: white;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
}

/* Legal Pages */
.legal-page {
  padding: 2rem 0 4rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  color: #27ae60;
  border-bottom: 2px solid #27ae60;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
}

.contact-details {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
  margin: 1rem 0;
}

/* About Page */
.about-page {
  padding: 2rem 0 4rem;
}

.page-hero {
  background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
  padding: 3rem 0;
  text-align: center;
}

.company-story {
  padding: 4rem 0;
}

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

.story-text {
  flex: 1;
}

.story-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.mission-vision {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

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

.mv-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mv-item h3 {
  color: #27ae60;
  margin-bottom: 1rem;
}

.values {
  padding: 4rem 0;
}

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

.value-item {
  text-align: center;
  padding: 1.5rem;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-item h3 {
  color: #27ae60;
  margin-bottom: 1rem;
}

.team {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-stat {
  text-align: center;
}

.certifications {
  padding: 4rem 0;
}

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

.cert-item {
  text-align: center;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cert-item h3 {
  color: #27ae60;
  margin-bottom: 1rem;
}

.contact-cta {
  background-color: #27ae60;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.contact-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: #d5f4e6;
  margin-bottom: 2rem;
}

/* thanks.php Page */
.thanks.php-page {
  padding: 2rem 0 4rem;
}

.thanks.php-content {
  padding: 4rem 0;
  text-align: center;
}

.thanks.php-message {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.next-steps {
  margin: 3rem 0;
  text-align: left;
}

.steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  background-color: #27ae60;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: #27ae60;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: left;
}

.contact-item {
  margin-bottom: 0.5rem;
}

.thanks.php-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.resources {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

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

.resource-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resource-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.resource-card h3 {
  color: #27ae60;
  margin-bottom: 1rem;
}

/* Article Pages */
.article-page {
  padding: 2rem 0 4rem;
}

.article-hero {
  background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
  padding: 3rem 0;
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #27ae60;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #666;
}

.article-meta {
  display: flex;
  gap: 2rem;
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.article-content {
  padding: 4rem 0;
}

.article-content .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.article-body {
  max-width: none;
}

.article-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.article-body h2 {
  color: #27ae60;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.article-body h4 {
  color: #2c3e50;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.article-body ul,
.article-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.cta-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 3rem;
}

.cta-section h3 {
  color: #27ae60;
  margin-bottom: 1rem;
}

/* Article Sidebar */
.article-sidebar {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  margin-bottom: 2rem;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h3 {
  color: #27ae60;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.related-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-article {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: white;
  border-radius: 5px;
  text-decoration: none;
}

.related-article img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.related-content h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.related-content h4 a {
  color: #2c3e50;
  text-decoration: none;
}

.related-content h4 a:hover {
  color: #27ae60;
}

.related-content .date {
  font-size: 0.8rem;
  color: #666;
}

.contact-widget {
  background-color: white;
  padding: 1.5rem;
  border-radius: 5px;
}

.contact-widget p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.newsletter-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-sidebar input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
}

.newsletter-sidebar button {
  padding: 10px;
  font-size: 0.9rem;
}

/* Cookie Settings Panel */
.cookie-settings-panel {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .navbar {
    padding: 1rem 15px;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .services-grid,
  .advantages-grid,
  .testimonials-grid,
  .blog-grid,
  .values-grid,
  .cert-grid,
  .resource-cards {
    grid-template-columns: 1fr;
  }

  .company-content,
  .story-content {
    flex-direction: column;
    text-align: center;
  }

  .company-stats {
    flex-direction: column;
    gap: 1rem;
  }

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

  .cookie-content {
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .article-content .container {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .mv-grid,
  .team-stats {
    grid-template-columns: 1fr;
  }

  .thanks.php-actions {
    flex-direction: column;
    align-items: center;
  }

  .steps {
    margin-left: 0;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .subscription-form {
    padding: 1.5rem;
  }

  .article-hero {
    padding: 2rem 0;
  }

  .legal-content {
    padding: 0 15px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .cookie-modal,
  .article-sidebar,
  .cta-section {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }

  .article-content .container {
    grid-template-columns: 1fr;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid #000;
  }

  .btn-secondary {
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
  }

  .service-card,
  .testimonial-card,
  .blog-card {
    border: 2px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 2px solid #27ae60;
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.thanks-message {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.steps {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.step {
  flex-direction: column;
  background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
      align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}




.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger div {
  width: 30px;
  height: 3px;
  background: green;
  margin: 4px;
  transition: all 0.3s ease;
}


@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    background-color: #fff;
  }

  .nav-menu.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}
