

        :root {

            --primary-color: #b0ebb0;

            --secondary-color: #2e8b57;

            --dark-color: #1a3a1a;

            --light-color: #f0fff0;

        }

        

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

        }

        

        body {

            background-color: var(--primary-color);

            color: #333;

            line-height: 1.6;

        }

        

        /* Header Styles */

        header {

            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600') no-repeat center center/cover;

            color: white;

            padding: 2rem 0;

            text-align: center;

            position: relative;

            height: 300px;

            display: flex;

            flex-direction: column;

            justify-content: center;

            align-items: center;

        }

        

        /* Navigation */

        .navbar {

            background-color: var(--dark-color);

            position: sticky;

            top: 0;

            z-index: 1000;

            display: flex;

            justify-content: space-between;

            align-items: center;

            padding: 1rem 2rem;

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

        }

        

        .logo {

            display: flex;

            align-items: center;

        }

        

        .logo img {

            height: 40px;

            margin-left: 10px;

        }

        

        .logo h2 {

            color: white;

            font-size: 1.5rem;

        }

        

        .nav-links {

            display: flex;

            list-style: none;

        }

        

        .nav-links li {

            margin-right: 1.5rem;

        }

        

        .nav-links a {

            color: white;

            text-decoration: none;

            font-weight: 500;

            transition: color 0.3s;

        }

        

        .nav-links a:hover {

            color: var(--primary-color);

        }

        

        .hamburger {

            display: none;

            cursor: pointer;

            color: white;

            font-size: 1.5rem;

        }

        

        /* Main Content */

        .container {

            max-width: 1200px;

            margin: 0 auto;

            padding: 0 20px;

        }

        

        section {

            padding: 3rem 0;

        }

        

        h1 {

            font-size: 2.5rem;

            margin-bottom: 1rem;

            color: white;

            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

        }

        

        h2 {

            font-size: 2rem;

            margin-bottom: 1.5rem;

            color: var(--dark-color);

            text-align: center;

        }

        

        h3 {

            font-size: 1.5rem;

            margin-bottom: 1rem;

            color: var(--secondary-color);

        }

        

        /* Features Section */

        .features {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

            gap: 2rem;

            margin-top: 2rem;

        }

        

        .feature-box {

            background-color: white;

            padding: 2rem;

            border-radius: 10px;

            text-align: center;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

            transition: transform 0.3s;

        }

        

        .feature-box:hover {

            transform: translateY(-10px);

        }

        

        .feature-icon {

            font-size: 2.5rem;

            color: var(--secondary-color);

            margin-bottom: 1rem;

        }

        

        /* Pricing Section */

        .pricing-plans {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

            gap: 2rem;

            margin-top: 2rem;

        }

        

        .plan {

            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            text-align: center;

        }

        

        .plan:hover {

            transform: scale(1.05);

        }

        

        .plan-header {

            background-color: var(--secondary-color);

            color: white;

            padding: 1.5rem;

        }

        

		.plan-header h3{

		color: #fff;
               
		}

        .plan-price {

            font-size: 2rem;

            font-weight: bold;

            margin: 1rem 0;

        }

        

        .plan-duration {

            font-size: 1.2rem;
            opacity: 0.8;

        }

        

        .plan-features {

            padding: 1.5rem;
            list-style: none;

        }

        

        .plan-features li {

            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            text-align: right;

        }

        

        .btn {

            display: inline-block;

            background-color: var(--secondary-color);

            color: white;

            padding: 0.8rem 1.5rem;

            border-radius: 5px;

            text-decoration: none;

            font-weight: bold;

            margin: 1rem 0;

            transition: background-color 0.3s;

        }

        

        .btn:hover {

            background-color: var(--dark-color);

        }

          .box {

            background-color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: justify;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;

        }
      
/* Contact Section Styles */
#contact {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 1200px;
}

#contact h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

#contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2e8b57;
}

.contact-methods {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-method {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.whatsapp { color: #25D366; }
.telegram { color: #0088cc; }
.email { color: #D44638; }

.btn {
    display: inline-block;
    background-color: #2e8b57;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #1f6e45;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
    }
    
    #contact {
        padding: 1.5rem;
    }
}


       
        /* Footer */

        footer {

            background-color: var(--dark-color);

            color: white;

            text-align: center;

            padding: 2rem 0;

            margin-top: 2rem;

        }

        

        /* Responsive Design */

        @media (max-width: 768px) {

            .nav-links {

                position: fixed;

                top: 70px;

                right: -100%;

                width: 100%;

                height: calc(100vh - 70px);

                background-color: var(--dark-color);

                flex-direction: column;

                align-items: center;

                padding-top: 2rem;

                transition: right 0.5s;

            }

            

            .nav-links.active {

                right: 0;

            }

            

            .nav-links li {

                margin: 1rem 0;

            }

            

            .hamburger {

                display: block;

            }

            

            h1 {

                font-size: 2rem;

            }

            

            h2 {

                font-size: 1.4rem;

            }

            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
        }
