 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f3fff8;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #218561;
        }

        hr{
            margin-bottom: 30px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: #218561;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #218561;
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: .3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn:hover {
            background-color: #43f24c;
            /* transform: translateY(-3px); */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.368);
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.278);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img{
            width: 100px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #218561;
            font-weight: 500;
            transition: .3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: #43f24c;
        }
        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #43f24c;
            left: 0;
            bottom: -5px;
            transition: .3s;
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            padding-top: 150px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #767676;
            max-width: 500px;
        }

        .hero-image img{
            border-radius: 15px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.23);
        }

        .hero-img {
            max-width: 100%;
            border-radius: 20px;
        }

        /* Services Section */
        .services p{
            padding-bottom: 15px;
        }


        .services {
            background-color: #fff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.284);
            transition: .3s;
            text-align: left;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 40px;
            color: #218561;
            margin-bottom: 20px;
        }

        /* info-block */

        .info-block h1{
            text-align: center;
        }
        .info-block p{
            padding-bottom: 15px;
        }
        .info-block a{
            color: #218561;
        }

        /* footer */

        .footer{
            background-color: white;
        }
        .footer p{
            padding-bottom: 15px;
        }
        .footer-box{
            display: flex;
            gap: 30px;
        }
        .footer-logo img{
            width: 200px;
        }
        .footer-block{
            display: flex;
            gap: 30px;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .footer-partner img{
            width: 150px;
            /* margin-top: 10px; */
        }
        .footer-partner h2{
            margin-bottom: 30px;
        }
        .footer-partner{
            text-align: center;
        }
        .footer-partner p{
            margin-top: 30px;
        }

        .footer-partner a{
            text-decoration: none;
            color: #fff;
            background-color: #218561;
            padding: 10px 20px;
            border-radius: 15px;
            transition: .3s;
        }
        .footer-partner a:hover{
            color: #fff;
            background-color: #43f24c;
        }


        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text p {
                margin: 0 auto 30px;
            }

            h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .header-container{
                display: block;

            }
        }

        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }

            h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }