/* Base styles */
:root {
  --primary-color: #1ABC9C;
  --primary-dark: #16a085;
  --secondary-color: #3498DB;
  --accent-color: #F39C12;
  --text-color: #333333;
  --light-text: #777777;
  --background-color: #ffffff;
  --light-bg: #f9f9f9;
  --border-color: #e1e1e1;
  --section-padding: 80px 0;
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 20px;
}

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 16px;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: underline;
  padding: 8px 16px;
}

.btn-tertiary:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-contact {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-contact:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

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

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0 5px;
  margin-bottom: 0;
}

.main-nav a {
  display: block;
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.main-nav a:hover, .main-nav a.active {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  width: 30px;
  height: 20px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Banner Section */
.banner-section {
  padding: 120px 0 100px;
  background-color: var(--light-bg);
  overflow: hidden;
}

.banner-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-content {
  flex: 0 0 50%;
  max-width: 50%;
}

.banner-image {
  flex: 0 0 45%;
  max-width: 45%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.banner-content h1 {
  margin-bottom: 15px;
  font-size: 3rem;
  color: var(--text-color);
}

.banner-content h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: var(--primary-color);
}

.banner-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--light-text);
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.service-card {
  flex: 0 0 calc(25% - 30px);
  margin: 15px;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img {
  max-height: 70px;
  max-width: 70px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--text-color);
}

.service-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* About Section */
.about-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

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

.about-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  margin: 10px 20px;
}

.feature-icon {
  margin-right: 10px;
}

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding);
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -15px;
}

.pricing-card {
  flex: 0 0 calc(33.333% - 30px);
  margin: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  padding: 30px 20px 20px;
  text-align: center;
  background-color: #f8f9fa;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.price {
  font-size: 1.2rem;
  color: var(--light-text);
}

.price span {
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.pricing-features {
  padding: 30px 20px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 25px;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pricing-card .btn-secondary, .pricing-card .btn-primary {
  display: block;
  margin: 0 auto;
  width: 80%;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  color: var(--light-text);
  font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 30px);
  margin: 15px;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
  margin-bottom: 20px;
  display: flex;
}

.star {
  margin-right: 5px;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-color);
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--light-text);
}

/* Blog Preview Section */
.blog-preview-section {
  padding: var(--section-padding);
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.blog-card {
  flex: 0 0 calc(50% - 30px);
  margin: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.blog-content p {
  margin-bottom: 20px;
  color: var(--light-text);
  flex-grow: 1;
}

.read-more {
  align-self: flex-start;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-dark);
  padding-left: 5px;
}

.blog-button {
  text-align: center;
  margin-top: 40px;
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.contact-info {
  flex: 0 0 calc(40% - 30px);
  margin: 15px;
}

.contact-form {
  flex: 0 0 calc(60% - 30px);
  margin: 15px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  margin-right: 15px;
  margin-top: 5px;
}

.contact-detail h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.social-media {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  margin-top: 15px;
}

.social-icon {
  margin-right: 20px;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-5px);
}

/* Form styles */
.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
}

.form-checkbox input {
  width: auto;
  margin-top: 5px;
  margin-right: 10px;
}

.form-checkbox label {
  font-weight: normal;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer */
.main-footer {
  padding: 70px 0 30px;
  background-color: #2d3436;
  color: white;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 0 0 30%;
  margin-right: 5%;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-logo p {
  color: #dfe6e9;
  font-size: 0.95rem;
}

.footer-links {
  flex: 0 0 65%;
  display: flex;
}

.footer-column {
  flex: 1;
  margin-right: 30px;
}

.footer-column:last-child {
  margin-right: 0;
}

.footer-column h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #dfe6e9;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright p {
  color: #dfe6e9;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Thank You Page */
.thank-you-section {
  padding: 120px 0;
  background-color: var(--light-bg);
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-message {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.what-next {
  margin: 30px 0;
  text-align: left;
}

.what-next ul {
  list-style-type: none;
  padding: 0;
}

.what-next li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.what-next li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.thank-you-buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.thank-you-buttons a {
  margin: 0 10px;
}

/* Legal Pages */
.legal-section {
  padding: 80px 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

.last-update {
  color: var(--light-text);
  font-style: italic;
  margin-bottom: 30px;
}

.legal-section-content {
  margin-bottom: 40px;
}

.legal-section-content h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.legal-section-content h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.legal-section-content p, .legal-section-content ul, .legal-section-content ol {
  margin-bottom: 15px;
}

/* Blog Page */
.blog-header {
  padding: 100px 0 60px;
  background-color: var(--light-bg);
  text-align: center;
}

.blog-header h1 {
  margin-bottom: 20px;
}

.blog-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--light-text);
}

.blog-articles {
  padding: 80px 0;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}

.blog-article {
  flex: 0 0 calc(50% - 40px);
  margin: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.blog-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-date {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.newsletter-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.newsletter-content h2 {
  margin-bottom: 20px;
}

.newsletter-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.newsletter-form-group {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-form-group input {
  flex: 1;
  margin-right: 10px;
}

/* Article Page */
.article-container {
  padding: 80px 0;
}

.article-header {
  margin-bottom: 40px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.back-to-blog svg {
  margin-right: 8px;
  transition: var(--transition);
}

.back-to-blog:hover {
  color: var(--primary-dark);
}

.back-to-blog:hover svg {
  transform: translateX(-5px);
}

.article-meta {
  display: flex;
  margin-bottom: 20px;
}

.article-date, .article-category {
  color: var(--light-text);
  margin-right: 20px;
  font-size: 0.9rem;
}

.article-category {
  color: var(--primary-color);
}

.article-featured-image {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.featured-img {
  width: 100%;
  height: auto;
}

.article-content {
  margin-bottom: 50px;
}

.article-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-color);
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.article-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.article-tips, .article-warning, .recipe-box {
  background-color: #f7f9fc;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid var(--primary-color);
}

.article-warning {
  border-left-color: #e74c3c;
}

.recipe-box h3, .recipe-box h4 {
  margin-top: 0;
}

.article-cta {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 40px 0;
}

.article-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.article-share {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.article-share span {
  margin-right: 15px;
  font-weight: 500;
}

.share-buttons {
  display: flex;
}

.share-buttons a {
  margin-right: 15px;
  transition: var(--transition);
}

.share-buttons a:hover {
  transform: translateY(-5px);
}

.related-articles {
  margin-top: 60px;
}

.related-articles h3 {
  margin-bottom: 30px;
}

.related-grid {
  display: flex;
  margin: -15px;
}

.related-article {
  flex: 0 0 calc(50% - 30px);
  margin: 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.related-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.related-article h4 {
  padding: 20px;
  margin: 0;
  color: var(--text-color);
  transition: var(--transition);
}

.related-article:hover h4 {
  color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 1200px) {
  :root {
    --section-padding: 70px 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .banner-content h1 {
    font-size: 2.6rem;
  }
  
  .banner-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 60px 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .banner-section {
    padding: 100px 0 80px;
  }
  
  .banner-content h1 {
    font-size: 2.4rem;
  }
  
  .banner-content h2 {
    font-size: 1.6rem;
  }
  
  .service-card {
    flex: 0 0 calc(50% - 30px);
  }
  
  .pricing-card, .testimonial-card {
    flex: 0 0 calc(50% - 30px);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .contact-info, .contact-form {
    flex: 0 0 calc(100% - 30px);
  }
  
  .contact-info {
    margin-bottom: 40px;
  }
  
  .contact-detail {
    max-width: 400px;
  }
  
  .blog-article, .related-article {
    flex: 0 0 calc(100% - 40px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .banner-section {
    padding: 80px 0 60px;
  }
  
  .banner-section .container {
    flex-direction: column;
  }
  
  .banner-content, .banner-image {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .banner-content {
    margin-bottom: 40px;
  }
  
  .banner-content h1 {
    font-size: 2.2rem;
  }
  
  .banner-image {
    max-width: 70%;
    margin: 0 auto;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 10px 0;
  }
  
  .service-card, .testimonial-card {
    flex: 0 0 calc(100% - 30px);
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    flex: 0 0 calc(100% - 30px);
    max-width: 400px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo, .footer-links {
    flex: 0 0 100%;
  }
  
  .footer-logo {
    margin-bottom: 40px;
    margin-right: 0;
  }
  
  .footer-links {
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  
  .newsletter-form-group {
    flex-direction: column;
  }
  
  .newsletter-form-group input {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .thank-you-buttons {
    flex-direction: column;
  }
  
  .thank-you-buttons a {
    margin: 10px 0;
  }
  
  .legal-content {
    padding: 30px 20px;
  }
  
  .blog-card {
    flex: 0 0 calc(100% - 30px);
  }
  
  .related-grid {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .banner-section {
    padding: 60px 0 40px;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content h2 {
    font-size: 1.4rem;
  }
  
  .banner-image {
    max-width: 90%;
  }
  
  .about-features {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .feature {
    margin: 10px 0;
  }
  
  .thank-you-content {
    padding: 30px 20px;
  }
}
