 body {
     background: #fff;
     color: #343434;
     font-size: 14px;
     font-weight: 400;
     font-family: 'Poppins', sans-serif;
 }

 .title {
     text-align: center;
     font-size: 2.8rem;
     font-weight: 900;
     margin: 80px 0 40px;
     color: #004643;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 /* Services Grid */
 .FogyKwCA65 {
     max-width: 1200px;
     margin: 0 auto 80px;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 32px;
     padding: 0 20px;
 }

 .service-card {
     background: linear-gradient(145deg, #d2f1e4, rgba(253, 70, 50, 0.5));
     border-radius: 24px;
     box-shadow: 0 10px 25px rgba(0, 70, 60, 0.2);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
     cursor: pointer;
 }

 .service-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 20px 40px rgba(0, 70, 60, 0.4);
 }

 .service-img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-bottom: 3px solid #007965;
     transition: transform 0.5s ease;
 }

 .service-card:hover .service-img {
     transform: scale(1.05);
 }

 .service-card h3 {
     font-size: 1.5rem;
     font-weight: 800;
     color: #014d40;
     padding: 20px 24px 12px;
 }

 .service-card p {
     padding: 0 24px 18px;
     color: #065f51;
     font-weight: 600;
 }

 .price {
     font-weight: 900;
     color: #012d25;
     font-size: 1.4rem;
     padding: 0 24px 20px;
 }

 .btn-order {
     margin: 0 24px 24px;
     background: #007965;
     color: #f0f9f4;
     padding: 14px 28px;
     text-align: center;
     font-weight: 800;
     border-radius: 32px;
     text-decoration: none;
     letter-spacing: 0.07em;
     transition: background 0.3s ease;
     display: inline-block;
 }

 .btn-order:hover {
     background: #004d40;
 }

 /* Plans */
 .plans-container {
     background: rgba(253, 70, 50, 0.5);
     padding: 60px 20px 100px;
 }

 .ZjXJnhTdR2 {
     max-width: 1100px;
     margin: 0 auto;
     display: flex;
     gap: 40px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .plan-box {
     background: white;
     box-shadow: 0 10px 30px rgba(0, 70, 60, 0.15);
     border-radius: 24px;
     padding: 36px 30px;
     width: 320px;
     display: flex;
     flex-direction: column;
     transition: box-shadow 0.3s ease, transform 0.3s ease;
     cursor: pointer;
 }

 .plan-box:hover {
     box-shadow: 0 18px 55px rgba(0, 70, 60, 0.35);
     transform: translateY(-10px);
 }

 .plan-box.highlighted {
     border: 3px solid #007965;
 }

 .plan-box h3 {
     font-size: 1.8rem;
     font-weight: 900;
     color: #004d40;
     margin-bottom: 28px;
     text-align: center;
 }

 .plan-box ul {
     list-style-type: disc;
     padding-left: 20px;
     margin-bottom: 32px;
     color: #05614d;
     font-weight: 700;
 }

 .plan-box ul li {
     margin-bottom: 14px;
 }

 .plan-price {
     font-weight: 900;
     font-size: 1.5rem;
     text-align: center;
     color: #007965;
     margin-bottom: 32px;
 }

 .btn-plan {
     background: #004d40;
     color: #f0f9f4;
     text-align: center;
     padding: 14px 0;
     border-radius: 40px;
     font-weight: 900;
     text-decoration: none;
     letter-spacing: 0.1em;
     transition: background 0.3s ease;
 }

 .btn-plan:hover {
     background: #007965;
 }

 /* Reviews */
 .reviews-container {
     max-width: 1200px;
     margin: 80px auto 120px;
     padding: 0 20px;
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 36px;
 }

 .review-card {
     background: #f0fff8;
     border-radius: 20px;
     padding: 28px 24px;
     box-shadow: 0 10px 30px rgba(0, 70, 60, 0.15);
     color: #024732;
     font-style: italic;
     position: relative;
     transition: box-shadow 0.3s ease;
 }

 .review-card:hover {
     box-shadow: 0 16px 45px rgba(0, 70, 60, 0.3);
 }

 .review-card p {
     font-weight: 600;
     font-size: 1rem;
     line-height: 1.5;
 }

 .review-author {
     margin-top: 18px;
     font-weight: 900;
     font-style: normal;
     color: #007965;
     text-align: right;
     font-size: 0.9rem;
 }

 .review-author span {
     color: #2ebd85;
     font-size: 1.2rem;
     margin-left: 8px;
 }

 /* Responsive */
 @media (max-width: 1000px) {

     .FogyKwCA65,
     .reviews-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .ZjXJnhTdR2 {
         justify-content: center;
     }
 }

 @media (max-width: 650px) {

     .FogyKwCA65,
     .reviews-grid {
         grid-template-columns: 1fr;
     }

     .plan-box {
         width: 90%;
         margin: 0 auto 30px;
     }
 }

 h1 {
     font-size: 36px;
 }

 h2 {
     font-size: 32px;
 }

 h3 {
     font-size: 28px;
 }

 h4 {
     font-size: 24px;
 }

 h5 {
     font-size: 20px;
 }

 h6 {
     font-size: 18px;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     color: #111;
 }

 a {
     color: #111;
 }

 a:hover {
     color: #fd4632;
     text-decoration: none;
     transition: .5s ease-out;
 }

 ul {
     padding: 0;
     margin: 0;
 }

 ul li {
     list-style-type: none;
 }

 p {
     line-height: 26px;
 }

 .D1yavJBNn6 {
     background: rgba(253, 70, 50, 0.5);
 }

 .hdr-press {
     background: #fdfdfd;
     border-bottom: 2px solid #5c6bc0;
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     position: relative;
     z-index: 100;
 }

 .hdr-wrapper-press {
     max-width: 1140px;
     margin: 0 auto;
     padding: 16px 32px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 70px;
 }

 .dTYbH5LU3i {
     font-size: 1.9rem;
     font-weight: 800;
     color: #3949ab;
     text-transform: lowercase;
 }

 /* Desktop menu */
 .nav-desktop-press {
     display: flex;
     gap: 20px;
 }

 .nav-desktop-press a {
     text-decoration: none;
     background-color: #5c6bc0;
     color: #fff;
     padding: 8px 16px;
     border-radius: 20px;
     font-weight: 600;
     transition: background-color 0.3s ease;
 }

 .nav-desktop-press a:hover {
     background-color: #3949ab;
 }

 /* burger */
 .tHtrAaNkuR {
     display: none;
 }

 .burger-press {
     display: none;
     width: 40px;
     height: 40px;
     border: 2px solid #5c6bc0;
     border-radius: 50%;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     position: relative;
 }

 .burger-press span {
     position: absolute;
     width: 20px;
     height: 2.5px;
     background: #5c6bc0;
     transition: all 0.3s ease;
 }

 .burger-press span:nth-child(1) {
     top: 12px;
 }

 .burger-press span:nth-child(2) {
     top: 19px;
 }

 .burger-press span:nth-child(3) {
     top: 26px;
 }

 .tHtrAaNkuR:checked+.burger-press span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 5px);
 }

 .tHtrAaNkuR:checked+.burger-press span:nth-child(2) {
     opacity: 0;
 }

 .tHtrAaNkuR:checked+.burger-press span:nth-child(3) {
     transform: rotate(-45deg) translate(5px, -5px);
 }

 .PScX242x2S {
     display: none;
 }

 @media (max-width: 768px) {
     .nav-desktop-press {
         display: none;
     }

     .burger-press {
         display: flex;
     }

     .PScX242x2S {
         position: fixed;
         bottom: 0;
         left: 0;
         width: 100%;
         background: #fdfdfd;
         border-top: 2px solid #5c6bc0;
         box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 24px;
         padding: 24px 0;
         transform: translateY(100%);
         transition: transform 0.3s ease;
         z-index: 200;
     }

     .PScX242x2S a {
         text-decoration: none;
         color: #3949ab;
         font-size: 1.2rem;
         font-weight: 700;
         padding: 8px 16px;
         border-radius: 20px;
         transition: background-color 0.3s ease;
     }

     .PScX242x2S a:hover {
         background-color: #5c6bc0;
         color: #fff;
     }

     .tHtrAaNkuR:checked~.PScX242x2S {
         transform: translateY(0);
     }
 }

 /* button */
 .button {
     background: #5d2bdc;
     padding: 12px 30px;
     font-weight: 500;
     font-size: 15px;
     border-radius: 5px;
     color: #fff;
     letter-spacing: 1px;
     margin-top: 22px;
     display: inline-block;
     border: 2px solid transparent;
 }

 .button:hover {
     border-color: #5d2bdc;
     color: #5d2bdc;
     background: transparent;
     transition: .5s ease-out;
 }

 /* navbar */
 .navbar {
     padding: 8px 0 12px;
     transition: .5s ease-out;
     background: transparent;
 }

 .navbar .navbar-brand {
     color: #fff;
     font-size: 32px;
     font-weight: 700;
 }

 .navbar .navbar-nav li {
     padding: 0 15px;
 }

 .navbar .navbar-nav li a {
     color: #fff;
     font-weight: 500;
     font-size: 15px;
 }

 .navbar .navbar-nav li a:last-child {
     padding-right: 0 !important;
 }

 .navbar .navbar-nav li:last-child {
     padding-right: 0;
 }

 .navbar .navbar-toggler i {
     color: #fff;
 }

 .navbar-fixed {
     background: #fff;
     transition: .5s ease-out;
     box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0);
 }

 .navbar-fixed .navbar-brand {
     color: #232323;
 }

 .navbar-fixed .navbar-brand span {
     color: #fd4632;
 }

 .navbar-fixed .navbar-nav li a {
     color: #232323;
 }

 .navbar-fixed .navbar-toggler i {
     color: #333;
 }

 .navbar-transparent {
     background: transparent !important;
 }

 /* haader title */
 .header-title {
     background: #fd4632;
     padding: 160px 0 100px;
     text-align: center;
 }

 .header-title h3 {
     color: #fff;
     font-size: 42px;
     font-weight: 600;
 }

 /* about us */
 .about h2 {
     font-weight: 600;
 }

 .about h2 span {
     color: #fd4632;
 }

 .about h6 {
     color: #333;
     margin-bottom: 28px;
     margin-top: 10px;
 }

 /* home intro */
 .home-intro {
     background: linear-gradient(rgba(145, 15, 0, 0.5), rgba(253, 70, 50, 0.5));
     background-position-x: 0%, 0%;
     background-position-y: 0%, 0%;
     background-attachment: scroll, scroll;
     background-size: auto, auto;
     background-position: center;
     background-size: cover;
     padding: 210px 0 120px !important;
 }

 .home-intro h5 {
     color: #5d2bdc;
     margin-top: 40px;
 }

 .home-intro h2 {
     color: #fff;
     font-size: 40px;
     font-weight: 600;
     margin: 25px 0;
     line-height: 54px;
 }

 .home-intro h6 {
     color: #fff;
     line-height: 28px;
     font-size: 17px;
     margin-bottom: 15px;
 }

 .home-intro img {
     height: auto;
     max-width: 100%;
     display: inline-block;
     vertical-align: middle;
 }

 /* section */
 .section {
     padding: 100px 0 120px;
 }

 .title-section {
     text-align: center;
     margin-bottom: 50px;
 }

 .title-section h3 {
     font-size: 32px;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .title-section h3 span {
     color: #fd4632;
 }

 .title-section p {
     width: 60%;
     margin: auto;
     line-height: 30px;
     font-size: 15px;
 }

 .title-section-two {
     text-align: left;
 }

 .title-section-two p {
     width: 100%;
 }

 /* services */
 .services {
     padding: 100px 0 90px;
 }

 .services .content {
     background: #fff;
     border-radius: 6px;
     padding: 30px;
     margin-bottom: 30px;
     box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.2);
 }

 .services .content i {
     font-size: 54px;
     color: #5d2bdc;
 }

 .services .content h5 {
     margin: 25px 0 14px;
 }

 .services .content-center {
     background: #5d2bdc;
     color: #fff;
 }

 .services .content-center i {
     color: #fff;
 }

 .services .content-center h5 {
     color: #fff;
 }

 /* pricing */
 .pricing .content {
     border-radius: 6px;
     padding: 30px;
     box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.2);
     border: 2px solid #ddd;
 }

 .pricing .content h3 {
     font-size: 38px;
     font-weight: 600;
     margin: 10px 0 22px;
     color: #5d2bdc !important;
 }

 .pricing .content li {
     margin: 15px 0;
 }

 .pricing .content li i {
     margin-right: 20px;
 }

 .pricing .content-color {
     border: 2px solid #5d2bdc;
 }

 .pricing .content-color .button {
     background: #5d2bdc;
     padding: 12px 30px;
     font-weight: 500;
     font-size: 15px;
     border-radius: 5px;
     color: #fff;
     letter-spacing: 1px;
     margin-top: 22px;
     display: inline-block;
     border: 2px solid transparent;
 }

 .pricing .content-color .button:hover {
     border-color: #5d2bdc;
     color: #5d2bdc;
     background: transparent;
     transition: .5s ease-out;
 }

 .pricing .button {
     border: 2px solid #111;
     color: #111;
     background: transparent;
 }

 .pricing .button:hover {
     border-color: #5d2bdc;
     color: #5d2bdc;
     background: transparent;
     transition: .5s ease-out;
 }

 /* features */
 .features .content {
     background: #fff;
     border-radius: 6px;
     padding: 25px 30px;
     position: relative;
     margin-bottom: 25px;
     box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.2);
 }

 .features .content i {
     font-size: 54px;
     color: #5d2bdc;
     margin-top: 16px;
 }

 .features .content h5 {
     margin: 0 0 14px;
 }

 .features .content .icon {
     float: left;
     margin-right: 30px;
     text-align: center;
     width: 56px;
 }

 .features .content .content-text {
     overflow: hidden;
 }

 /* latest blog */
 .latest-blog {
     padding-top: 120px;
 }

 .latest-blog .content {
     border-radius: 6px;
     box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.2);
     border: 2px solid #ddd;
 }

 .latest-blog .content span {
     position: relative;
     background: #5d2bdc;
     color: #fff;
     padding: 8px 20px;
     top: -29px;
     border-radius: 0 6px 0 0;
     margin-bottom: -29px;
     left: -2px;
 }

 .latest-blog .content img {
     border-radius: 3px 3px 0 0;
 }

 .latest-blog .content-text {
     padding: 30px;
     padding-top: 2px;
 }

 .latest-blog .content-text h5 {
     line-height: 30px;
 }

 .latest-blog .content-text a:hover {
     color: #fd4632;
     transition: .5s ease-out;
 }

 /* blog */
 .blog .content {
     border-radius: 6px;
     box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.2);
     border: 2px solid #ddd;
     margin-bottom: 30px;
 }

 .blog .content span {
     position: relative;
     background: #5d2bdc;
     color: #fff;
     padding: 8px 20px;
     top: -29px;
     border-radius: 0 6px 0 0;
     margin-bottom: -29px;
     left: -2px;
 }

 .blog .content img {
     border-radius: 3px 3px 0 0;
 }

 .blog .content-text {
     padding: 30px;
     padding-top: 2px;
 }

 .blog .content-text h5 {
     line-height: 30px;
 }

 .blog .content-text a:hover {
     color: #fd4632;
     transition: .5s ease-out;
 }

 /* pagination */
 .pagination {
     text-align: center;
     margin: 0 auto;
     display: inherit;
 }

 .pagination ul li {
     display: inline-block;
     margin: 10px;
 }

 .pagination ul li a {
     height: 50px;
     width: 50px;
     line-height: 48px;
     text-align: center;
     border: 2px solid #ddd;
     display: block;
     font-size: 18px;
     border-radius: 6px;
 }

 .pagination ul li .active {
     background: #5d2bdc;
     color: #fff;
     border-color: #5d2bdc;
 }

 /* blog single */
 .blog-single .content h5 {
     font-size: 24px;
     line-height: 34px;
 }

 .blog-single .content li {
     display: inline-block;
     margin-right: 20px;
 }

 .blog-single .content li i {
     margin-right: 10px;
 }

 .blog-single .content img {
     margin-top: 30px;
     margin-bottom: 25px;
 }

 .blog-single .content .quote {
     background: #eee;
     padding: 20px;
     margin-bottom: 20px;
     margin-top: 22px;
 }

 .blog-single .comments {
     border-top: 2px solid #ddd;
     padding-top: 30px;
     margin-top: 35px;
 }

 .blog-single .comments h5 {
     margin-bottom: 25px;
 }

 .blog-single .button {
     margin-top: 0;
 }

 .blog-single .search {
     margin-bottom: 16px;
 }

 .blog-single .search input {
     width: calc(100% - 65px);
     height: 52px;
 }

 .blog-single .search .button {
     float: right;
     padding-right: 15px;
     padding-left: 15px;
     font-size: 22px;
     height: 52px;
     line-height: 26px;
     width: 52px;
 }

 .blog-single .sidebar-link h5 {
     border-bottom: 2px solid #ddd;
     padding-bottom: 14px;
     margin-bottom: 22px;
 }

 .blog-single .sidebar-link li {
     margin-bottom: 16px;
 }

 .blog-single .sidebar-link li a {
     font-size: 15px;
 }

 .blog-single .categories {
     margin-top: 40px;
 }

 /* contact */
 .contact form input,
 .contact form textarea {
     border: 2px solid #ddd;
     padding: 15px 20px;
     border-radius: 6px;
     margin-bottom: 30px;
     width: 100%;
     color: #aaa;
 }

 .contact .button {
     margin-top: 0;
 }

 .contact li {
     margin-bottom: 25px;
     font-size: 20px;
 }

 .contact li i {
     margin-right: 28px;
     color: #5d2bdc;
 }

 .contact .map {
     position: relative;
     top: -5px;
 }

 .contact .map i {
     float: left;
     margin-right: 34px;
     margin-top: 10px;
 }

 .contact .map p {
     overflow: hidden;
     line-height: 42px;
 }

 ::placeholder {
     color: #aaa;
     opacity: 1;
 }

 :-ms-input-placeholder {
     color: #aaa;
 }

 ::-ms-input-placeholder {
     color: #aaa;
 }

 form input,
 form textarea {
     border: 2px solid #ddd;
     padding: 15px 20px;
     border-radius: 6px;
     margin-bottom: 30px;
     width: 100%;
     color: #aaa;
 }

 /* footer bottom */
 .footer-bottom {
     background: #0a0a0a;
     text-align: center;
     color: #eee;
     padding: 20px 0 8px;
 }

 /* footer */
 footer {
     padding: 120px 0 110px;
     background: #111;
     color: #ddd;
 }

 footer h5 {
     color: #fff;
     margin-bottom: 25px;
 }

 footer h6 {
     color: #fff;
     font-size: 32px;
     font-weight: 700;
     position: relative;
     top: -8px;
 }

 footer h6 span {
     color: #fd4632;
 }

 footer ul li {
     margin-bottom: 15px;
 }

 footer ul li a {
     color: #ddd;
 }

 footer ul li a:hover {
     color: #fd4632;
     transition: .5s ease-out;
 }

 footer ul li i {
     margin-right: 25px;
 }

 footer ul .map {
     line-height: 30px;
 }

 footer ul .map i {
     float: left;
     margin-right: 34px;
     margin-top: 5px;
 }

 footer ul .map p {
     overflow: hidden;
 }

 footer ul li:last-child {
     margin-bottom: 0;
 }

 /*responsive*/
 @media (max-width:980px) {
     .home-intro img {
         margin-top: 95px;
     }

     .services .content {
         padding: 20px;
     }

     .pricing .content {
         padding: 20px;
     }

     .features img {
         margin-bottom: 30px;
     }

     .latest-blog .content {
         margin-bottom: 30px;
     }

     .latest-blod .content.r-980 {
         margin-bottom: 0;
     }

     .about .col-md-6 {
         max-width: 100%;
         flex: 100%;
     }

     .features .col-md-6 {
         max-width: 100%;
         flex: 100%;
     }

 }

 @media (max-width:767px) {
     .latest-blod .content.r-980 {
         margin-bottom: 0;
     }

     .blog-single .search {
         margin-top: 30px;
     }

 }

 @media (max-width:640px) {
     .navbar-fixed .navbar-nav li {
         padding: 0;
     }

     .navbar .navbar-nav {
         background: #fff;
         padding: 14px;
     }

     .navbar .navbar-nav li a {
         color: #333;
     }

     .navbar-fixed .navbar-nav {
         padding: 0;
     }

     .services .content {
         margin-bottom: 30px;
     }

     .services .YreuoAOTga:last-child .content {
         margin-bottom: 0;
     }

     .pricing .content {
         margin-bottom: 30px;
     }

     .pricing .YreuoAOTga:last-child .content {
         margin-bottom: 0;
     }

     .latest-blod .content.r-980 {
         margin-bottom: 0;
     }

     .blog-single .search {
         margin-top: 30px;
     }

     footer .col-sm-6 {
         margin-top: 50px;
     }

 }

 @media (max-width:480px) {
     .navbar .navbar-brand {
         margin-left: 11px;
     }

     .navbar .navbar-nav {
         margin: 11px;
         margin-left: 11px !important;
     }

     .navbar-fixed .navbar-nav {
         padding: 2px;
     }

     .latest-blod .content.r-980 {
         margin-bottom: 0;
     }

     footer .col-12 {
         margin-top: 30px;
     }

 }

 @media (max-width:360px) {
     .latest-blod .content.r-980 {
         margin-bottom: 0;
     }

 }