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

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: #ffffff;
            color: #1E2A2E;
            line-height: 1.4;
            scroll-behavior: smooth;
        }
		a{
			text-decoration:none;
			color:#000;
		}
        /* container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* buttons – Cleandot original style (soft teal) */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 1rem;
            padding: 12px 28px;
            border-radius: 48px;
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
            border: none;
            background: none;
        }

        .btn-primary {
            background-color: #1fc0f9;  /* Cleandot signature teal */
            color: white;
            box-shadow: 0 4px 8px rgba(42, 127, 110, 0.2);
        }

        .btn-primary:hover {
            background-color: #0397cc;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(42, 127, 110, 0.3);
        }

        .btn-outline {
            border: 2px solid #1fc0f9;
            color: #1fc0f9;
            background: transparent;
        }

        .btn-outline:hover {
            background-color: #1fc0f9;
            color: white;
        }
.btn-outline2 {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}
        /* header */
        .top-banner {
            background-color: #e0f7ff;
			background: linear-gradient(45deg, #dbdbdb 5%, #ffffff 10%, #e5e5e5 30%, #e8eaea 50%, #e9efef 70%, #ffffff 80%, #c4c4c4 95%);
            color: #000000;
            text-align: center;
            padding: 10px 0;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .top-banner a {
            color: #1fc0f9;
            text-decoration: none;
            font-weight: 700;
        }

        .navbar {
            position: sticky;
            top: 0;
            background: white;
            z-index: 1000;
            border-bottom: 1px solid #e9ecef;
            padding: 16px 0;
            transition: all 0.2s;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            text-decoration: none;
            color: #1E2A2E;
        }

        .logo span {
            color: #1fc0f9;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2c3e3b;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #1fc0f9;
        }

        .cart-icon {
            position: relative;
            font-size: 1.3rem;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* Hero with video background */
        .hero {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            min-height: 55vh;
            display: flex;
            align-items: flex-end;
			
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 1;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
			font-size: 3.5rem;
			font-weight: 800;
			line-height: 0.7;
			letter-spacing: -0.02em;
			margin-bottom: 30px;
			color: #ffffff;
        }
		.hero-content h1 span {
            font-size: 2rem;
        }
.owl-theme .owl-dots .owl-dot.active span:before{
	content:"💧";
    margin-left: -12px;
    margin-top: -14px;
    position: absolute;
    font-size: 23px;
}
        .hero-content p {
                font-size: 0.9rem;
				color: #4a5b5e;
				margin-bottom: 5px;
				line-height: 1.5;
				background: #fff;
				padding: 1px 10px;
				border-radius: 20px;
				max-width: fit-content;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
			    margin-top: 30px;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 32px;
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.1);
        }

        /* as seen on */
        .as-seen {
            padding: 40px 0;
            background: white;
            text-align: center;
            border-top: 1px solid #eef2f0;
            border-bottom: 1px solid #eef2f0;
        }

        .as-seen p {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #7C8B8A;
            margin-bottom: 20px;
        }

        .logo-cloud {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .logo-cloud i {
            font-size: 2rem;
            color: #b9cfc7;
            transition: color 0.2s;
        }

        .logo-cloud span {
            font-weight: 600;
            color: #7C8B8A;
            font-size: 1rem;
        }

        /* features */
        .features {
            padding: 80px 0;
            background: #ffffff;
        }

        .section-title {
            text-align: center;
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 56px;
            color: #1E2A2E;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
        }

        .feature-card {
            text-align: center;
            padding: 0 12px;
        }

        .feature-icon {
            background: #EFF7F4;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 24px;
        }

        .feature-icon i {
            font-size: 2.4rem;
            color: #1fc0f9;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        /* products grid */
        .products {
            padding: 40px 0 80px;
            background: #FCFEFC;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
            gap: 2%;
            margin-top: 20px;
        }

        .product-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.25s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            border: 1px solid #eef2f0;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
        }

        .product-img {
            background: #F8FBF9;
            text-align: center;
			justify-content: flex-end;
			display: flex;
        }
.saledCount {
    position: absolute;
    padding-right: 20px;
    padding-top: 20px;
    display: flex;
    gap: 10px;
}
        .product-img img {
            max-width: 100%;
            object-fit: contain;
        }

        .product-info {
            padding: 20px 20px 28px;
        }

        .product-title {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .product-desc {
            color: #5f7370;
            font-size: 0.85rem;
            margin: 12px 0;
            line-height: 1.4;
        }

        .price {
            font-weight: 800;
            font-size: 1.5rem;
            margin: 12px 0;
        }

        .price small {
            font-size: 0.8rem;
            font-weight: 400;
            color: #1fc0f9;
        }

        .badge {
            background: #E6F3EF;
            color: #1E5F52;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 10px;
        }

        /* how it works */
        .how-it-works {
            padding: 80px 0;
            background: white;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 20px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            background: #EFF7F4;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 64px;
            margin: 0 auto 24px;
            font-weight: 800;
            font-size: 1.8rem;
            color: #1fc0f9;
        }

        /* testimonials */
        .testimonials {
            background: #F9FCF9;
        }
		.testimonials .container{
            padding: 80px 0;
        }

        .testimonial-grid {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 10px;
			margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            padding: 32px;
            border-radius: 32px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.03);
        }

        .stars {
            color: #1fc0f9;
            margin-bottom: 18px;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.5;
            color: #2e3b3c;
            margin-bottom: 20px;
			    min-height: 125px;
        }

        .customer {
            font-weight: 700;
        }

        /* cta */
        .cta {
            padding: 70px 20px;
            background: #1E2A2E;
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .cta .btn-primary {
            background-color: #1fc0f9;
            color: #1E2A2E;
            box-shadow: none;
        }

        .cta .btn-primary:hover {
            background-color: #0397cc;
            transform: translateY(-2px);
        }

        /* footer */
        .footer {
            background: #0f1a1c;
            color: #cbdad6;
            padding: 60px 0 40px;
        }

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

        .footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-col a {
            display: block;
            color: #b0c2be;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            color: #1fc0f9;
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #2a3d3f;
            font-size: 0.8rem;
        }
		
		.tp-success-digi-icon {
        border-radius: 100%;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	box-shadow: 0 4px 16px 0 rgba(29, 27, 49, 0.05);
    background: #ffffff;
    width: 100px;
    height: 100px;
    line-height: 100px;
}
    .h3, h3 {
        font-size: 20px;
        font-weight: 700;
    }
.container-1230 {
    margin-top: 50px;
}
.tp-ff-jakarta {
    color: #878898;
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}
h2.tp-ff-jakarta {
    font-size: 58px;
    letter-spacing: -0.04em;
    margin-bottom: 25px;
    font-weight: 700;
	color: #242e45;
}
#accordionExample h2 {
    margin-bottom: 0;
}
.tp-round-10 {
    border-radius: 10px;
}
.mb-55 {
    margin-bottom: 55px;
}
ul {
    margin: 0px;
    padding: 0px;
}
.tp-faq-cpr-title.mb-30 h2 {
    font-size: 36px;
    color: #242e45;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.17;
}
.tp-cpr-section-subtitle {
    background: linear-gradient(90deg, #f5f4ff 0%, rgba(255, 255, 255, 0) 100%);
    padding: 5px 15px;
	color: #1fc0f9;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	border-radius: 17px;
	margin-bottom: 20px;
}
.tp-faq-area {
    margin-bottom: 0px;
    background: #ffffff;
    padding: 80px 0;
}
.tp-about-cpr-feature-list ul li {
    list-style: none;
    font-weight: 600;
    font-size: 17px;
    color: #242e45;
    display: flex;
}
.tp-about-cpr-feature-list ul li span {
    background: #f3f5f9;
    box-shadow: 0 1px 2px 0 rgba(197, 188, 237, 0.6);
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    border-radius: 30px;
    transform: translateY(3px);
    margin-right: 13px;
}
.tp-btn-gradient {
    background-size: 200% auto;
    background-image: linear-gradient(to right, #1fc0f9, #0397cc, #1fc0f9);
    font-weight: 700;
	font-size: 18px;
	color: #ffffff;
	letter-spacing: -0.01em;
    padding: 21px 40px;
    line-height: 0%;
	    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	
}
.ml-5 {
    margin-left: 5px;
}
.tp-blog-lwr-sidebar-faq .tp-faq-cpr-2-wrap .accordion-header .accordion-buttons {
  font-family: var(--tp-ff-body);
  color: #185757;
}
.tp-blog-lwr-sidebar-faq .tp-faq-cpr-2-wrap .accordion-header .accordion-buttons:not(.collapsed) {
  color: #b17856;
}
.tp-blog-lwr-sidebar-faq .tp-faq-cpr-2-wrap .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon {
  background: #b17856;
}
.tp-faq-cpr-wrap {
  margin-top: -12px;
}
.tp-faq-digi-wrap .tp-faq-digi-wrap-accordion .accordion-header .accordion-buttons {
    position: relative;
    width: 100%;
    text-align: left;
    padding-right: 40px;
    line-height: 1.1;
	color: inherit;
    outline: none;
    border: none;
    background: transparent;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
      font-size: 16px;
}
.tp-faq-cpr-wrap .tp-faq-digi-wrap-accordion .accordion-items {
  border: none;
  margin-top: 0;
}
.tp-faq-cpr-wrap .tp-faq-digi-wrap-accordion .accordion-header .accordion-buttons .accordion-icon {
  right: auto;
  left: 0;
}
.tp-faq-cpr-wrap .tp-faq-digi-wrap-accordion .accordion-header .accordion-buttons:not(.collapsed) {
  padding-bottom: 12px;
}
.tp-faq-cpr-wrap .tp-faq-digi-wrap-accordion .accordion-body {
  padding: 0 85px 10px 20px;
  margin: 0;
}
.tp-faq-digi-wrap .tp-faq-digi-wrap-accordion .accordion-header .accordion-buttons .accordion-icon {
    position: absolute;
    top: 50%;
    right: 8px;
}
.tp-faq-cpr-wrap .tp-faq-digi-wrap-accordion .accordion-header .accordion-buttons .accordion-icon {
    right: auto;
    left: 0;
}
.tp-faq-digi-wrap .tp-faq-digi-wrap-accordion .accordion-header .accordion-buttons .accordion-icon::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #5C6972;
    border-radius: 2px;
    transition: 0.4s;
}
.tp-faq-digi-wrap .tp-faq-digi-wrap-accordion .accordion-header .accordion-buttons .accordion-icon::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #5C6972;
    border-radius: 2px;
}
@media (max-width: 575px) {
  .tp-faq-cpr-wrap .tp-faq-digi-wrap-accordion .accordion-body {
    padding: 0 0 10px 20px;
  }
}
        /* responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-image {
                order: -1;
                text-align: center;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                background: white;
                width: 80%;
                height: calc(100vh - 70px);
                flex-direction: column;
                padding: 40px 24px;
                box-shadow: 2px 0 20px rgba(0,0,0,0.05);
                transition: 0.3s ease;
                gap: 32px;
                align-items: flex-start;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .mobile-toggle {
                display: block;
            }
            .features-grid, .steps {
                grid-template-columns: 1fr;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 24px;
            }
            .section-title {
                font-size: 2rem;
            }
            .hero {
                padding: 40px 0;
				min-height: 1vh;
            }
			.hero-content {
				visibility: hidden;
			}
			h2.tp-ff-jakarta {
				font-size: 26px;
			}
			.tp-faq-cpr-title.mb-30 h2 {
				font-size: 26px;
			}
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .btn {
                padding: 10px 20px;
            }
        }

        /* Owl Carousel özel düzenlemeleri */
        .owl-carousel .owl-nav button.owl-prev,
        .owl-carousel .owl-nav button.owl-next {
            background: rgba(31, 192, 249, 0.7) !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            color: white !important;
            font-size: 24px !important;
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
        }
        .owl-carousel .owl-nav button.owl-prev {
            left: -20px;
        }
        .owl-carousel .owl-nav button.owl-next {
            right: -20px;
        }
        .owl-carousel .owl-dots {
            margin-top: 20px;
        }
        .owl-carousel .owl-dot span {
            background: #ccc !important;
        }
        .owl-carousel .owl-dot.active span {
            background: #1fc0f9 !important;
        }
        @media (max-width: 768px) {
            .owl-carousel .owl-nav button.owl-prev,
            .owl-carousel .owl-nav button.owl-next {
                top: 35%;
            }
            .owl-carousel .owl-nav button.owl-prev {
                left: 5px;
            }
            .owl-carousel .owl-nav button.owl-next {
                right: 5px;
            }
        }
        .slider-item img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .slider-item img:hover {
            transform: scale(1.02);
        }
        .slider-caption {
            text-align: center;
            margin-top: 15px;
            font-weight: 500;
            color: #1E2A2E;
        }
		tp-bg-common-white {
    background-color:#ffffff;
}
.tp-service-cpr-item {
    padding: 6px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mb-25 {
    margin-bottom: 25px;
}
.fix {
    overflow: hidden;
}
.tp-round-6 {
    border-radius: 6px;
}
.w-100 {
    width: 100% !important;
}
.tp-img-hover-inner-up {
    -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    -webkit-transform: scale(1);
    transform: scale(1);
}
.tp-service-cpr-content {
    padding: 0px 25px 24px 25px;
}
.mb-15 {
    margin-bottom: 15px;
}
.ls-m-2 {
    letter-spacing: -0.02em;
}
.fs-22 {
    font-size: 22px;
}
.tp-text-common-black-3 {
    color: #242e45;
}
.tp-service-cpr-item .tp-ff-jakarta {
    min-height: 50px;
}
.underline-black {
    background-image: linear-gradient(#072032, #072032), linear-gradient(#072032, #072032);
    background-size: 0 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
    -webkit-transition: all 0.4s ease 0.3s ease-out;
    -moz-transition: all 0.4s ease 0.3s ease-out;
    -ms-transition: all 0.4s ease 0.3s ease-out;
    -o-transition: all 0.4s ease 0.3s ease-out;
    transition: all 0.4s ease 0.3s ease-out;
}
.tp-service-cpr-btn a {
    width: 40px;
    height: 40px;
    line-height: 37px;
    background: #f3f5f9;
    color: #4230D3;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 1;
}
.rounded-circle {
    border-radius: 50% !important;
}
.text-center {
    text-align: center !important;
}
.d-inline-block {
    display: inline-block !important;
}
.tp-service-cpr-btn a::before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #1fc0f9 0%, #0397cc 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    visibility: hidden;
}
.tp-service-cpr-btn a svg {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.tp-service-cpr-border {
    width: 86%;
    height: 1px;
    background: rgba(36, 46, 69, 0.1);
    display: inline-block;
    position: relative;
}
.tp-service-cpr-border::before {
    position: absolute;
    content: "";
    background: #1fc0f9;
    width: 0;
    height: 1px;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.text-right {
    text-align: right;
}
.mb-30 {
    margin-bottom: 30px;
}


.tp-bg-common-white {
    background-color: #ffffff;
}

.tp-postbox-cpr-input-group {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(36, 46, 69, 0.06);
    border-right: 1px solid rgba(36, 46, 69, 0.06);
    margin-right: -2px;
}
label {
    display: inline-block;
}

.tp-text-common-black-3 {
    color: #242e45;
}
.fs-18 {
    font-size: 18px;
}

.fw-600 {
    font-weight: 600;
}
.ls-m-2 {
    letter-spacing: -0.02em;
}
.tp-postbox-cpr-input-group .input {
	outline: none;
	width: 100%;
    line-height: 56px;
	background-color:#ffffff;
    font-weight: 400;
    font-size: 14px;
    color: var(--tp-grey-3);
    border: none;
    padding: 0;
    height: 22px;
	    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}
.tp-success-digi-item:hover span{
	transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
	
.container-1230 {
    margin-top: 0px;
}
.tp-faq-area {
    margin-bottom: 0px;
    padding: 0px 0;
}
.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}
.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.cta h2 {
    font-size: 2rem;
}
.col-sm-6 {
    width: 50%;
}
.hero-content h1 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.hero-content p {
    font-size: 0.7rem;
}
.hero-buttons {
    margin-top: 10px;
	justify-content: flex-start;
	gap: 5px;
}
.hero-content .btn {
	padding: 0px 10px;
}
.tp-about-area {
    margin-top: 30px;
}
}


@media (min-width: 768px) {
.hero {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            min-height: 55vh;
            display: flex;
            align-items: flex-end;
			z-index: -1;
        }

        .hero-video-bg {
            left: 0;
			width: 100%;
			object-fit: cover;
			opacity: 1;
			pointer-events: none;
			min-width: 100%;
			position: fixed;
			top: 86px;
			height: 68vh;
        }
		.tp-about-area {
    padding-top: 50px;
    background: #fff;
}
}

.sustainability-impact {
            background: #F4F9F4;
            padding: 80px 0;
        }
        .sustainability-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .sustainability-card {
            background: white;
            border-radius: 32px;
            padding: 36px 28px;
            flex: 1;
            min-width: 260px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            transition: transform 0.2s;
            text-align: left;
            border: 1px solid #e2efe6;
        }
        .sustainability-card:hover {
            transform: translateY(-5px);
        }
        .sustainability-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
        }
        .sustainability-card h3 {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1E2A2E;
        }
        .sustainability-stats {
            list-style: none;
            padding-left: 0;
        }
        .sustainability-stats li {
            margin-bottom: 14px;
            padding-left: 28px;
            position: relative;
            font-size: 1rem;
            line-height: 1.45;
            color: #2e4a3e;
        }
        .sustainability-stats li:before {
            content: "•";
            color: #1fc0f9;
            font-weight: bold;
            font-size: 1.5rem;
            position: absolute;
            left: 4px;
            top: -4px;
        }
        .small-note {
            font-size: 0.9rem;
            color: #5f7a6e;
            margin-top: 20px;
            border-top: 1px solid #ddebe4;
            padding-top: 18px;
        }
        @media (max-width: 992px) {
            .sustainability-grid {
                flex-direction: column;
            }
        }
		
		.sustainability-icon{
			display:none;
		}