* {
    margin: 0;
    padding: 0;
   box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 16px;
   line-height: 1.6;
   color: #000000;
         background: #ffffff;
}

img {
    max-width: 100%;
   height: auto;
    display: block;
}

a {
   text-decoration: none;
  color: inherit;
    transition: all 0.3s ease;
}

#preloder {
   position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
  left: 0;
  background: #ffffff;
   z-index :        9999;
}

.loader {
  position: absolute;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
   border-top: 5px solid #333333;
   border-radius: 50%;
  animation: spin 1s linear infinite;
}@keyframes spin {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}.container-fluid {
    width: 100%;

   padding-right    :      15px;

  padding-left: 15px;

          margin-right: auto;

  margin-left: auto;
}@media (min-width: 576px) {
	.container-fluid {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container-fluid {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container-fluid {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container-fluid {
		max-width: 1140px;
	}
}.row {
   display: flex;
   flex-wrap: wrap;
   margin-right :     -15px;
   margin-left: -15px;
}

.col-sm-4, .col-sm-6, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7 {
   position: relative;
  width: 100%;
  padding-right: 15px;
   padding-left: 15px;
}@media (min-width: 576px) {
	.col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 768px) {
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
}.text-center {
  text-align: center;
}

.order-1 {
  order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
   order: 3;
}@media (min-width: 576px) {
	.order-sm-1 { order: 1; }
	.order-sm-3 { order: 3; }
}

@media (min-width: 768px) {
	.order-md-2 { order: 2; }
}.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
   z-index: 999;
}

.header .row {
  align-items: center;
}

.header__logo img {
    display: block;
}

.site-logo {
    display: inline-block;
}

.site-logo h1 {
    margin: 0;
   font-weight: normal;
   color: #333333;
}

.header__switches {
   text-align: right;
}

.nav-switch {
   display: inline-block;
   padding: 10px;
   background: #333333;
    color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
}

.nav-switch i {
    font-size: 20px;
}

.main__menu {
  margin-top: 20px;
}

.nav__menu {
  list-style: none;
  display: flex;
    justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.nav__menu li {
  position: relative;
}

.nav__menu a {
   color   :    #333333;
	   text-transform: uppercase;
	  font-weight: normal;
	   padding: 10px 0;
	   display: inline-block;
}

.nav__menu a:hover,
.nav__menu a.menu--active {
   color: #8bc34a;
}

.hero__section {
	 position: relative;
   padding: 60px 0;
  background: #f5f5f5;
}

.hero-slider {
    margin-bottom: 40px;
}

.slide-item p {
   margin: 0;
}

.slide-item img {
     width: 100%;
   border-radius: 10px;
     }

.hero-text__wrapper {
    text-align: center;
   max-width: 800px;
    margin: 0 auto;
   padding: 0 20px;
}

.hero-text__wrapper h2 {
  font-size: calc(10px + 2.6vh);
   font-weight: normal;
    margin-bottom: 20px;
   color: #333333;
}

.hero-text__wrapper p {
   font-size: 18px;
   color: #666666;
    margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
   background-color: #333333;
  color: white;
    padding: 10px 20px;
   border-radius: 30px;
  font-size: 16px;
    font-weight: bold;
    text-decoration: none;
   transition: all 0.3s ease;
}

.cta-button:hover {
   background-color: #555555;
  color: white;
}

.services-preview {
  padding: 60px 0;
    background: #ffffff;
}

.services-preview h2 {
    text-align: center;
   font-size: 36px;
  font-weight: normal;
   margin-bottom: 50px;
  color: #333333;
}

.service-card {
   background: #f9f9f9;
   margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 250px;
    object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 10px;
   font-size :    22px;
    font-weight: normal;
  color: #333333;
}

.service-card p {
  padding: 0 20px 20px;
   color: #666666;
    font-size: 15px;
}

.workshops__area {
  padding: 60px 0;
   background: #8bc34a;
   color: #ffffff;
}

.workshop-image {
    margin-bottom: 30px;
}

.workshop-image img {
  width: 100%;
  border-radius: 10px;
}

.workshop-content h2 {
   font-size: 32px;
   font-weight: normal;
  margin-bottom:        20px;
}

.workshop-content p {
    margin-bottom: 15px;
   line-height: 1.7;
        font-size: 16px;
}

.workshop-list {
   list-style: none;
  margin: 20px 0;
}

.workshop-list li {
    padding: 8px 0 8px 25px;
   position: relative;
}

.workshop-list li::before {
  content: '✓';
    position: absolute;
  left: 0;
    font-weight: bold;
}

.btn-secondary {
   display: inline-block;
        background: #ffffff;
    color: #333333;
   padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
   margin-top: 20px;
   transition: all 0.3s ease;
}

.btn-secondary:hover {
   background: #f0f0f0;
}

.tools-section {
  padding: 60px 0;
  background: #fafafa;
}

.tools-section h2 {
  text-align: center;
   font-size: 36px;
  font-weight: normal;
   margin-bottom: 20px;
   color: #333333;
}

.intro-text {
   text-align: center;
   max-width: 700px;
    margin: 0 auto 50px;
  color: #666666;
    font-size: 17px;
}

.tool-box {
    background: #ffffff;
  padding: 25px;
    margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tool-box img {
    width: 100%;
  height: 220px;
    object-fit: cover;
   border-radius: 5px;
    margin-bottom: 15px;
}

.tool-box h4 {
  font-size: 20px;
  font-weight: normal;
   margin-bottom: 10px;
   color: #333333;
}

.tool-box p {
    color: #666666;
  font-size: 15px;
}

.vegetable-area {
   padding: 60px 0;
    background: #ffffff;
}

.vegetable-info {
  padding-right: 20px;
}

.vegetable-info h2 {
    font-size: 32px;
  font-weight: normal;
   margin-bottom: 20px;
  color: #333333;
}

.vegetable-info p {
  margin-bottom: 15px;
  color: #666666;
    line-height: 1.7;
}

.stats-wrapper		{
  display: flex;
  gap: 30px;
    margin-top: 30px;
}

.stat-item {
  background: #f5f5f5;
   padding: 25px;
    border-radius: 8px;
   text-align: center;
  flex: 1;
}

.stat-item .number {
    display: block;
   font-size: 42px;
   font-weight: bold;
    color: #8bc34a;
    margin-bottom: 5px;
}

.stat-item .label {
    display: block;
    font-size: 14px;
    color: #666666;
   text-transform: uppercase;
}

.vegetable-photo {
    margin-top: 30px;
}

.vegetable-photo img {
  width: 100%;
    border-radius: 10px;
}

.orchard-services {
  padding: 60px 0;
  background: #f9f9f9;
}

.orchard-services h2 {
  text-align: center;
   font-size: 36px;
    font-weight: normal;
  margin-bottom: 20px;
    color: #333333;
}

.section-intro {
    text-align: center;
  max-width: 750px;
   margin: 0 auto 50px;
    color: #666666;
   font-size: 17px;
}

.orchard-img {
  width: 100%;
    border-radius: 10px;
  margin-bottom: 30px;
}

.orchard-text h3 {
    font-size: 26px;
    font-weight: normal;
  margin-bottom: 15px;
    color: #333333;
}

.orchard-text p {
  margin-bottom: 15px;
   color: #666666;
    line-height: 1.7;
}

.urban-gardening {
    padding: 60px 0;
   background: #333333;
    color: #ffffff;
}

.urban-gardening h2 {
   text-align: center;
    font-size: 36px;
  font-weight: normal;
    margin-bottom: 50px;
}

.urban-content {
  padding-right: 20px;
}

.urban-content h3 {
   font-size: 28px;
   font-weight: normal;
   margin-bottom: 15px;
}

.urban-content p {
    margin-bottom: 15px;
   line-height: 1.7;
   opacity: 0.9;
}

.urban-list {
   list-style: none;
   margin: 25px 0;
}

.urban-list li {
   padding: 8px 0 8px 25px;
   position: relative;
}

.urban-list li::before {
  content: '→';
  position: absolute;
    left: 0;
  color: #8bc34a;
   font-weight: bold;
}

.urban-image {
  margin-top: 30px;
}

.urban-image img {
   width: 100%;
    border-radius: 10px;
}

.pathway-area {
   padding: 60px 0;
	background: #ffffff;
}

.pathway-photo {
   width: 100%;
   border-radius: 10px;
    margin-bottom: 30px;
}

.pathway-info h2 {
   font-size: 32px;
   font-weight: normal;
  margin-bottom: 20px;
  color: #333333;
}

.pathway-info p {
  margin-bottom: 15px;
   color: #666666;
   line-height: 1.7;
}

.link-arrow {
   display: inline-block;
  color: #8bc34a;
  font-weight: bold;
  margin-top: 15px;
  padding: 8px 0;
  border-bottom: 2px solid #8bc34a;
}

.link-arrow:hover {
   color: #7ab03a;
    border-bottom-color: #7ab03a;
}

.outdoor-living {
  padding: 60px 0;
  background: #fafafa;
}

.outdoor-living h2 {
    text-align: center;
    font-size: 36px;
   font-weight: normal;
  margin-bottom: 50px;
  color: #333333;
}

.outdoor-description {
    padding-right: 20px;
}

.outdoor-description h3 {
    font-size: 28px;
   font-weight: normal;
   margin-bottom: 15px;
   color: #333333;
}

.outdoor-description p {
    margin-bottom: 15px;
  color: #666666;
  line-height: 1.7;
}

.benefits-grid {
   display: grid;
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
    background: #ffffff;
    padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #8bc34a;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: normal;
  margin-bottom: 8px;
  color: #333333;
}

.benefit-item p {
  font-size: 14px;
    color: #666666;
  margin: 0;

}

.outdoor-photo {
    margin-top: 30px;
}

.outdoor-photo img {
    width: 100%;
  border-radius: 10px;
}

.seasonal-care {
   padding: 60px 0;
    background: #ffffff;
}

.seasonal-care h2 {
    text-align: center;
   font-size: 36px;
    font-weight: normal;
  margin-bottom: 20px;
    color: #333333;
}

.care-intro {
   text-align: center;
  max-width: 700px;
   margin: 0 auto 50px;
    color: #666666;
    font-size: 17px;
}

.season-card {
  background: #f9f9f9;
   border-radius: 8px;
    overflow: hidden;
	 margin-bottom: 30px;
}

.season-card h3 {
    background: #8bc34a;
    color: #ffffff;
    padding: 20px;
  text-align: center;
   font-size: 24px;
  font-weight: normal;
    margin: 0;
}

.season-card img {
  width: 100%;
   height: 200px;
   object-fit: cover;
}

.season-card ul {
    list-style: none;
        padding: 20px;
}

.season-card ul li {
    padding: 6px 0 6px 20px;
  position: relative;
   color: #666666;
   font-size: 15px;
}

.season-card ul li::before {
  content: '•';
  position: absolute;
  left: 5px;
    color: #8bc34a;
    font-size: 18px;
}

.consultation-area {
   padding: 60px 0;
  background: #f5f5f5;
}

.consultation-text h2 {
  font-size: 32px;
   font-weight: normal;
    margin-bottom: 20px;
    color: #333333;
}

.consultation-text p {
   margin-bottom: 15px;
    color: #666666;
   line-height: 1.7;
}

.consultation-text h3 {
   font-size: 26px;
    font-weight: normal;
    margin-top: 25px;
   margin-bottom: 15px;
   color    : #333333;
}

.consultation-list {
    list-style: none;
    margin: 20px 0;
}

.consultation-list li {
  padding: 8px 0 8px 25px;
   position: relative;
    color: #666666;
}

.consultation-list li::before {
  content: '✓';
  position: absolute;
   left: 0;
   color: #8bc34a;
   font-weight: bold;
    font-size: 18px;
}

.price-box {
   background: #8bc34a;
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  margin-top: 35px;
}

.price-label {
    display: block;
  color: #ffffff;
   font-size: 18px;
  margin-bottom: 10px;
}

.price-amount {
   display: block;
    color: #ffffff;
   font-size: 38px;
    font-weight: bold;
  margin-bottom: 20px;
}

.price-btn {
  display: inline-block;
    background: #ffffff;
   color: #333333;
  padding: 10px 20px;
   border-radius: 30px;
 font-weight: bold;
  transition: all 0.3s ease;
}

.price-btn:hover {
   background: #f0f0f0;
}

.consultation-image {
  margin-top: 30px;
}

.consultation-image img {
  width: 100%;
   border-radius: 10px;
}

.blog-area {
   padding: 60px 0;
    background: #fafafa;
}

.blog-area h2 {
  text-align: center;
    font-size: 36px;
   font-weight: normal;
   margin-bottom: 20px;
   color: #333333;
}

.blog-intro {
    text-align: center;
   max-width: 700px;
    margin: 0 auto 50px;
    color: #666666;
    font-size: 17px;
}

.blog-item {
   background: #ffffff;
    padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
   transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-item h3 {
   font-size: 22px;
  font-weight: normal;
  margin-bottom: 15px;
    color: #333333;
}

.blog-item p {
   color: #666666;
    font-size: 15px;
   line-height: 1.7;
   margin-bottom: 20px;
}

.blog-link {
  display: inline-block;
    color: #8bc34a;
   font-weight: bold;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.blog-link:hover {
    border-bottom-color: #8bc34a;
}

.contact-area {
   padding: 60px 0;
    background: #ffffff;
}

.contact-info h2 {
  font-size: 32px;
   font-weight: normal;
    margin-bottom: 20px;
  color: #333333;
}

.contact-info p {
    color: #666666;
  line-height: 1.7;
    margin-bottom: 30px;
}

.company-info {
  margin-top: 30px;
}

.info-block {
  margin-bottom: 25px;
}

.info-block h4 {
   font-size: 18px;
   font-weight: normal;
   margin-bottom: 8px;
    color: #333333;
}

.info-block p {
   color: #666666;
   margin: 0;
}

.info-block a {
  color: #8bc34a;
    font-weight: bold;
}

.info-block a:hover {
  color: #7ab03a;
}

.contact-form {
   background: #f9f9f9;
   padding: 35px;
    border-radius: 10px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
   font-weight: bold;
  color: #333333;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 12px 15px;
   border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
    border-color: #8bc34a;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
  width: 100%;
   background-color: #333333;
   color: white;
   padding: 12px 25px;
  border: none;
    border-radius: 30px;
   font-size: 16px;
   font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover	{
    background-color: #555555;
}

.footer {
  background: #333333;
  color: #ffffff;
    padding: 50px 0 20px;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-brand p {
  font-size: 15px;
    line-height: 1.7;
   color: #cccccc;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: normal;
  margin-bottom: 15px;
}

.footer-nav ul,
.footer-legal ul {
   list-style: none;
}

.footer-nav ul li,
.footer-legal ul li {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-legal a {
  color: #cccccc;
  font-size: 15px;
    transition: all 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
   color: #8bc34a;
   padding-left: 5px;
}

.footer-contact p {
    font-size: 15px;
  color: #cccccc;
    line-height: 1.7;
  margin-bottom: 10px;
	
}

.footer-contact a {
  color: #8bc34a;
  font-weight: bold;
}

.footer-contact a:hover {
   color: #7ab03a;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
   border-top: 1px solid #555555;
    text-align: center;
}

.footer-bottom p {
  font-size: 14px;
    color: #cccccc;
   margin: 0;
}@media (max-width: 767px) {
	.nav-switch {
		display: block;
	}
	
	.main__menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100vh;
		background: #ffffff;
		padding: 80px 30px 30px;
		box-shadow: 2px 0 10px rgba(0,0,0,0.1);
		transition: all 0.3s ease;
		z-index: 998;
		overflow-y: auto;
	}
	
	.main__menu.active {
		left: 0;
	}
	
	.nav__menu {
		flex-direction: column;
		gap: 0;
	}
	
	.nav__menu li {
		border-bottom: 1px solid #f0f0f0;
	}
	
	.nav__menu a {
		display: block;
		padding: 15px 0;
	}
	
	.hero-text__wrapper h2 {
		font-size: 28px;
	}
	
	.stats-wrapper {
		flex-direction: column;
	}
	
	.services-preview h2,
	.tools-section h2,
	.orchard-services h2,
	.urban-gardening h2,
	.outdoor-living h2,
	.seasonal-care h2,
	.blog-area h2 {
		font-size: 28px;
	}
	
	.workshop-content,
	.vegetable-info,
	.urban-content,
	.outdoor-description,
	.consultation-text {
		padding-right: 0;
		margin-bottom: 30px;
	}
}

@media (min-width: 768px) {
	.nav-switch {
		display: none;
	}
}.services-hero {
   background: #f5f5f5;
    padding: 60px 0 40px;
   text-align: center;
}

.services-hero h1 {
  margin: 0 0 15px;
    color: #333333;
   font-weight: normal;
}

.services-hero p
{
  font-size: 18px;
   color: #666666;
    margin: 0;
}

.services-catalog {
    padding: 50px 0 70px;
   background: #ffffff;
}

.service-product {
    background: #f9f9f9;
  border-radius: 8px;
    overflow: hidden;
  margin-bottom: 30px;
   transition: all 0.3s ease;
  display: flex;
    flex-direction: column;
   height: 100%;
}

.service-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {


   width: 100%;
  height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-product:hover .product-image img {
  transform: scale(1.05);
}

.service-product h3 {
   padding: 20px 20px 10px;
   font-size: 22px;
  font-weight: normal;
    color: #333333;
  margin: 0;
}

.service-product p {
    padding: 0 20px;
   color: #666666;
    font-size: 15px;
   line-height: 1.6;
   margin: 0 0 15px;
  flex-grow: 1;
}

.product-price {
  padding: 0 20px 15px;
}

.price-amount {
  display: inline-block;
    font-size: 24px;
    font-weight: bold;
   color: #8bc34a;
}

.product-btn {
  display: block;
   background-color: #333333;
  color: white;
   padding: 12px 20px;
  text-align: center;
    font-size: 15px;
  font-weight: bold;
  text-decoration: none;
    transition: all 0.3s ease;
   margin: 0;
  border-radius: 0;
}

.product-btn:hover {
  background-color: #555555;
    color: white;
}

.thankyou-section {
   min-height: 70vh;
  display: flex;
  align-items: center;
    justify-content: center;
  padding: 80px 0;
    background: #f5f5f5;
}

.thankyou-content {
  text-align: center;
  max-width     :      600px;
   margin: 0 auto;
  padding: 40px 20px;
}

.thankyou-icon {
  margin-bottom: 30px;
  display: flex;
    justify-content: center;
}

.thankyou-icon svg {
    animation: checkmark 0.8s ease-in-out;
}@keyframes checkmark {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}.thankyou-content h1 {
  margin: 0 0 25px;
  color: #333333;
    font-weight: normal;
}

.thankyou-message {
   font-size: 18px;
  color: #666666;
   margin-bottom: 20px;
    line-height: 1.7;
}

.thankyou-info {
               font-size: 16px;
    color: #666666;
	margin-bottom: 40px;
}

.thankyou-info a {
    color: #8bc34a;
   font-weight: bold;
    text-decoration: none;
}

.thankyou-info a:hover {
    color: #7ab03a;
    text-decoration: underline;
}

.thankyou-actions {
  display: flex;
    gap: 15px;
    justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
  background-color:#333333;
    color: white;
  padding: 12px 30px;
  border-radius: 30px;
   font-size: 16px;
    font-weight: bold;
   text-decoration: none;
   transition: all 0.3s ease;


}

.btn-primary:hover {
  background-color: #555555;
   color: white;
  transform: translateY(-2px);
}

.btn-secondary-alt {
  display: inline-block;
   background: #8bc34a;
  color: white;
  padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
  font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary-alt:hover {
   background: #7ab03a;
  color: white;
  transform: translateY(-2px);
}@media (max-width: 767px) {
	.services-hero {
		padding: 40px 0 30px;
	}
	
	.services-hero h1 {
		font-size: 28px;
	}
	
	.services-catalog {
		padding: 30px 0 50px;
	}
	
	.product-image {
		height: 200px;
	}
	
	.thankyou-section {
		min-height: 60vh;
		padding: 60px 0;
	}
	
	.thankyou-actions {
		flex-direction: column;
		align-items: stretch;
	}
	
	.btn-primary,
	.btn-secondary-alt {
		width: 100%;
		text-align: center;
	}
}.services-hero {
  background: #f5f5f5;
   padding: 60px 0 40px;
    text-align: center;
}

.services-hero h1 {


    margin: 0 0 15px;
   color: #333333;
  font-weight: normal;

}

.services-hero p {
   font-size: 18px;
  color: #666666;
    margin: 0;
}

.services-catalog {
   padding: 50px 0 70px;
  background: #ffffff;
}

.service-product {
   background: #f9f9f9;
   border-radius: 8px;
   overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
   display: flex;
  flex-direction: column;
   height: 100%;
}

.service-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
   height: 220px;
   overflow: hidden;
}

.product-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.3s ease;
}

.service-product:hover .product-image img {
  transform: scale(1.05);
}

.service-product h3 {
  padding: 20px 20px 10px;
    font-size: 22px;
  font-weight: normal;
  color: #333333;
    margin: 0;
}

.service-product p {
   padding: 0 20px;
   color: #666666;
    font-size: 15px;
  line-height: 1.6;
    margin: 0 0 15px;
    flex-grow: 1;
}

.product-price {
    padding: 0 20px 15px;
}

.price-amount {
  display: inline-block;
    font-size: 24px;
   font-weight: bold;
    color: #8bc34a;
}

.product-btn {
    display: block;
  background-color: #333333;
    color: white;
  padding: 12px 20px;
   text-align: center;
    font-size: 15px;
  font-weight: bold;
   text-decoration: none;
    transition: all 0.3s ease;
    margin: 0;
  border-radius: 0;
}

.product-btn:hover {
    background-color: #555555;
  color: white;
}

.thankyou-section {
   min-height: 70vh;
   display: flex;
   align-items: center;
   justify-content: center;
    padding: 80px 0;
  background: #f5f5f5;
}

.thankyou-content {
   text-align: center;
   max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.thankyou-icon {
  margin-bottom: 30px;
   display: flex;
  justify-content: center;
}

.thankyou-icon svg {
  animation: checkmark 0.8s ease-in-out;
}@keyframes checkmark {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}.thankyou-content h1 {
    margin: 0 0 25px;
  color: #333333;
  font-weight: normal;
}

.thankyou-message {
  font-size: 18px;
    color: #666666;
   margin-bottom: 20px;
  line-height: 1.7;
}

.thankyou-info {
  font-size: 16px;
   color: #666666;
   margin-bottom: 40px;
}

.thankyou-info a {
  color: #8bc34a;
   font-weight: bold;
  text-decoration: none;
}

.thankyou-info a:hover {
   color: #7ab03a;
    text-decoration: underline;
}

.thankyou-actions {
    display: flex;
    gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
    background-color: #333333;
      color: white;
    padding: 12px 30px;
    border-radius: 30px;
  font-size: 16px;
   font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #555555;
   color: white;
  transform: translateY(-2px);
}

.btn-secondary-alt {
    display: inline-block;
   background: #8bc34a;
   color: white;
   padding: 12px 30px;
  border-radius: 30px;
   font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-secondary-alt:hover {
   background: #7ab03a;
    color: white;
  transform: translateY(-2px);
}@media (max-width: 767px) {
	.services-hero {
		padding: 40px 0 30px;
	}
	
	.services-hero h1 {
		font-size: 28px;
	}
	
	.services-catalog {
		padding: 30px 0 50px;
	}
	
	.product-image {
		height: 200px;
	}
	
	.thankyou-section {
		min-height: 60vh;
		padding: 60px 0;
	}
	
	.thankyou-actions {
		flex-direction: column;
		align-items: stretch;
	}
	
	.btn-primary,
	.btn-secondary-alt {
		width: 100%;
		text-align: center;
	}
}.about-hero {
   background: #f5f5f5;
   padding: 60px 0 40px;
  text-align: center;
}

.about-hero h1 {
   margin: 0 0 15px;
   color: #333333;
   font-weight: normal;
}

.about-hero p {
    font-size: 18px;
  color: #666666;
  margin: 0;
}

.about-story {
    padding: 60px 0;
   background: #ffffff;
}

.story-content h2 {
    font-size: 32px;
  font-weight: normal;
  margin-bottom: 25px;
  color: #333333;
}

.story-content p {
  margin-bottom: 20px;
  color: #666666;
    line-height: 1.8;
   font-size: 16px;
}

.story-image {
   margin-top: 30px;
}

.story-image img {
  width: 100%;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-mission {
    padding: 60px 0;
  background: #fafafa;
}

.about-mission h2 {
   text-align: center;
   font-size: 36px;
    font-weight: normal;
    margin-bottom: 50px;
    color: #333333;
}

.value-box {
    background: #ffffff;
    padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 100%;
}

.value-box h3 {
   font-size: 22px;
  font-weight: normal;
   margin-bottom: 15px;
  color: #333333;
}

.value-box p {
  color: #666666;
  line-height: 1.7;
   font-size: 15px;
    margin: 0;
}

.about-approach {
    padding: 60px 0;
  background: #ffffff;
}

.approach-image {
   margin-bottom: 30px;
}

.approach-image img {
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.approach-content h2 {
    font-size: 32px;
   font-weight: normal;
  margin-bottom: 25px;
   color: #333333;
}

.approach-content p {
  margin-bottom: 20px;
  color: #666666;
   line-height: 1.8;
  font-size: 16px;
}

.about-experience {
   padding: 60px 0;
  background: #8bc34a;
  color: #ffffff;
}

.about-experience h2 {
   text-align: center;
    font-size: 36px;
   font-weight: normal;
        margin-bottom: 50px;
}

.experience-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
    max-width: 900px;
   margin: 0 auto;
}

.experience-item {
    text-align: center;
    padding: 20px;
}

.exp-number {
    display: block;
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 10px;
   color: #ffffff;
}

.exp-label {
    display: block;
    font-size: 16px;
  line-height: 1.5;
   color: #ffffff;
    opacity: 0.95;
}

.about-specialization {
  padding: 60px 0;
  background: #ffffff;
}

.specialization-content h2 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 25px;
  color: #333333;
}

.specialization-content p {
  margin-bottom: 20px;
  color: #666666;
    line-height: 1.8;
    font-size: 16px;
}

.specialization-image {
   margin-top: 30px;
}

.specialization-image img {
  width: 100%;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-commitment {
  padding: 60px 0;
    background: #f5f5f5;
}

.commitment-text {
  max-width: 900px;
  margin: 0 auto;
    text-align: center;
}

.commitment-text h2 {
    font-size: 36px;
    font-weight: normal;
   margin-bottom: 30px;
  color: #333333;
}

.commitment-text p {
    font-size: 17px;
  color: #666666;
   line-height: 1.8;
   margin-bottom: 20px;
}@media (max-width: 767px) {
	.about-hero {
		padding: 40px 0 30px;
	}
	
	.about-hero h1 {
		font-size: 28px;
	}
	
	.about-story,
	.about-mission,
	.about-approach,
	.about-experience,
	.about-specialization,
	.about-commitment {
		padding: 40px 0;
	}
	
	.about-mission h2,
	.about-experience h2,
	.commitment-text h2 {
		font-size: 28px;
	}
	
	.story-content,
	.approach-content,
	.specialization-content {
		margin-bottom: 30px;
	}
	
	.experience-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.exp-number {
		font-size: 42px;
	}
}.policySection {
   padding: 80px 2rem;
   background     :      #f8f9fa;
}

.policyContainer {
    max-width: 800px;
  margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
    font-size    :        2.5rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
  color: #7f8c8d;
   margin-bottom: 1.5rem;
    line-height: 1.7;
  font-size: 1.1rem;
}@media (max-width: 768px) {
	.policyContainer h2 {
		font-size: 2rem;
	}

	.policyContainer p {
		font-size: 1rem;
	}

	.policySection {
		padding: 60px 1rem;
	}
}.blog-hero {
  background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    padding: 80px 0 60px;
  text-align: center;
   color: #ffffff;
}

.blog-hero-content {
  max-width: 800px;
    margin: 0 auto;
   padding: 0 20px;
}

.blog-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
   padding: 8px 20px;
   border-radius: 20px;
    font-size: 14px;
  text-transform: uppercase;
    letter-spacing: 1px;
   margin-bottom: 20px;
  font-weight: bold;
}

.blog-hero h1 {
  font-size: 42px;
   font-weight: normal;
    margin: 0 0 15px;
   line-height: 1.2;
   color: #ffffff;
}

.blog-meta {
  font-size: 18px;
   opacity: 0.95;
    margin: 0;
}

.blog-content {
    padding: 60px 0;
   background: #ffffff;
}

.blog-article-wrapper {
   max-width: 900px;
    margin: 0 auto;
}

.blog-featured-image {
  margin-bottom: 40px;
   border-radius :      10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-text {
  color: #333333;
   line-height: 1.8;
    font-size: 17px;
}

.blog-intro {
    font-size: 20px;
   line-height: 1.7;
    color: #555555;
    margin-bottom: 35px;
    padding: 25px;
    background: #f9f9f9;
    border-left: 4px solid #8bc34a;
   border-radius: 5px;
}

.blog-text h2 {
   font-size: 32px;
  font-weight: normal;
   margin: 50px 0 25px;
    color: #333333;
   padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-text h3 {
   font-size: 26px;
   font-weight: normal;
  margin: 40px 0 20px;
  color: #333333;
}

.blog-text p {
   margin-bottom: 20px;
    color: #666666;
}

.blog-text ul,
.blog-text ol {
  margin: 25px 0;
   padding-left: 30px;
}

.blog-text ul li,
.blog-text ol li		{
   margin-bottom: 12px;
    color: #666666;
   line-height: 1.7;
}

.blog-text a {
  color: #8bc34a;
   font-weight: bold;
   text-decoration: none;
    border-bottom: 1px solid transparent;
   transition: all 0.3s ease;
}

.blog-text a:hover {
   border-bottom-color: #8bc34a;
}

.blog-inline-image {
   width: 100%;
  height: auto;
  border-radius: 8px;
    margin: 35px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-cta {
  background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
   padding: 50px 40px;
   border-radius: 10px;
  text-align: center;
    margin-top: 60px;
   color: #ffffff;
}

.blog-cta h3 {
    font-size: 28px;
   font-weight: normal;
   margin :   0 0 15px;
   color: #ffffff;
}

.blog-cta p {
  font-size: 18px;
   margin: 0 0 30px;
    opacity: 0.95;
  color: #ffffff;
}

.blog-cta .cta-button {
  background: #ffffff;
    color: #333333;
}

.blog-cta .cta-button:hover {
   background: #f0f0f0;
  color: #333333;
}@media (max-width: 767px) {
	.blog-hero {
		padding: 50px 0 40px;
	}
	
	.blog-hero h1 {
		font-size: 28px;
	}
	
	.blog-meta {
		font-size: 16px;
	}
	
	.blog-content {
		padding: 40px 0;
	}
	
	.blog-text {
		font-size: 16px;
	}
	
	.blog-intro {
		font-size: 18px;
		padding: 20px;
	}
	
	.blog-text h2 {
		font-size: 26px;
		margin: 35px 0 20px;
	}
	
	.blog-text h3 {
		font-size: 22px;
		margin: 30px 0 15px;
	}
	
	.blog-cta {
		padding: 35px 25px;
		margin-top: 40px;
	}
	
	.blog-cta h3 {
		font-size: 24px;
	}
	
	.blog-cta p {
		font-size: 16px;
	}
}