@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
*/

body {
    line-height: 1.6;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}


header {
    background: #00bf63;
    color: white;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.5rem;
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/*
a:link {
    color: black;
}
*/

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: white;
    height: 3px;
    margin: 4px 0;
    width: 25px;
}


section {
    /*padding: 4rem 0 2rem;*/
    padding: 100px 20px;
}


.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background: white;
}

.hero img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

.hero-text {
    max-width: 500px;
    
    /*bynp*/
    .title {
        font-size:72px;
        font-weight:900;
    }
    .details {
        font-size:24px
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    background: #ffde59;
}

.feature {
    background: #ffde59;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.feature img {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.video iframe {
    width: 100%;
    height: 315px;
    border: none;
}



.sec-info {
    text-align: center;
    padding: 20px 20px;
    max-width: 600px;
    margin: auto
}

.backoffice {
    background: #ffde59
}

.contact {
    background: white;
    color: black;
    text-align: center;
    padding: 100px 20px 40px;
}

.contact a {
    color: #333;
    text-decoration: none;
}





.pricing-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 10px 20px;
    background-color: #fff;
    flex-wrap: wrap;
    
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    width: 300px;
    padding: 30px;
    box-sizing: border-box;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.plan-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.price {
    font-size: 36px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.price-features li::before {
    content: '✔';
    color: green;
    font-weight: bold;
    margin-right: 10px;
}

.bo-features {
    padding-left: 40px;
    margin-bottom: 10px;
    font-size: 16px;
}


@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #00bf63;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
    }
    
    nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .hero-text {
        .title {
            font-size:36px;
            font-weight:700;
        }
        .details {
            font-size:24px
        }
    }

    .pricing-section {
        flex-direction: column;
        align-items: center;
    }
    
    .contact img {
        width: 300px
    }
}
