* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SHOP HERO */
.shop-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-image: url("shop/shop-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .78) 0%,
            rgba(0, 0, 0, .55) 45%,
            rgba(0, 0, 0, .25) 100%);
}

.shop-hero-container {
    position: relative;
    z-index: 2;
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.shop-hero-content {
    max-width: 700px;
}

.shop-badge {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 30px;
}

.shop-hero-content h1 {
    font-size: 62px;
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 28px;
}

.shop-hero-content h1 span {
    color: #60A5FA;
}

.shop-hero-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #E5E7EB;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;
}

.shop-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.shop-btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 34px;
    background: #2563EB;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: .3s;
}

.shop-btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-3px);
}

.shop-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 34px;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition: .3s;
}

.shop-btn-secondary:hover {
    background: rgba(255, 255, 255, .15);
}

.shop-stats {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.stat-box h3 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 6px;
    font-family: 'Nunito', sans-serif;
}

.stat-box span {
    color: #D1D5DB;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
}

/* TABLET */
@media(max-width:1200px) {
    .shop-hero-container {
        width: calc(100% - 80px);
    }

    .shop-hero-content h1 {
        font-size: 50px;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .shop-hero {
        min-height: 85vh;
        text-align: center;
    }

    .shop-hero-container {
        width: calc(100% - 40px);
    }

    .shop-hero-content {
        max-width: 100%;
    }

    .shop-hero-content h1 {
        font-size: 38px;
    }

    .shop-hero-content p {
        font-size: 17px;
    }

    .shop-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .shop-btn-primary,
    .shop-btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .shop-stats {
        justify-content: center;
        gap: 25px;
    }
}

/*==================================
        SHOP CATEGORIES
==================================*/
.shop-categories {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.categories-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.categories-heading {
    text-align: center;
    margin-bottom: 70px;
}

.categories-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.categories-heading h2 {
    margin: 18px 0;
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.categories-heading h2 span {
    color: #2563eb;
}

.categories-heading p {
    max-width: 720px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .15);
}

.category-card img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    margin-bottom: 22px;
}

.category-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

.category-card p {
    color: #2563eb;
    font-size: 16px;
    font-weight: 700;
}

@media(max-width:1200px) {
    .categories-container {
        width: calc(100% - 80px);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .shop-categories {
        padding: 70px 0;
    }

    .categories-container {
        width: calc(100% - 40px);
    }

    .categories-heading h2 {
        font-size: 36px;
    }

    .categories-heading p {
        font-size: 16px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .category-card {
        padding: 28px 20px;
    }

    .category-card img {
        width: 80px;
        height: 80px;
    }

    .category-card h3 {
        font-size: 22px;
    }
}

/*==================================
        FEATURED PRODUCTS
==================================*/

.featured-products {

    width: 100%;
    padding: 100px 0;
    background: #f8fbff;

}

.featured-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

}

/*==============================*/

.featured-heading {

    text-align: center;
    margin-bottom: 70px;

}

.featured-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.featured-heading h2 {

    margin: 18px 0;

    font-size: 48px;
    font-weight: 800;

    color: #111827;

    font-family: 'Nunito', sans-serif;

}

.featured-heading h2 span {

    color: #2563eb;

}

.featured-heading p {

    max-width: 760px;
    margin: auto;

    font-size: 20px;
    line-height: 1.8;

    color: #64748b;

}

/*==============================*/

.featured-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.product-card {

    position: relative;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    padding: 30px;

    border: 1px solid #E5E7EB;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);

    transition: .35s;

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);

}

.product-badge {

    position: absolute;

    top: 18px;
    left: 18px;

    background: #2563eb;

    color: #fff;

    padding: 6px 15px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

}

.product-card img {

    width: 100%;
    height: 220px;
    object-fit: contain;

    margin-bottom: 20px;

}

.product-card h3 {

    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;

    font-family: 'Nunito', sans-serif;

}

.product-rating {

    color: #F59E0B;

    font-size: 18px;

    margin-bottom: 15px;

}

.product-price {

    font-size: 28px;

    font-weight: 800;

    color: #2563eb;

    margin-bottom: 25px;

}

.product-price span {

    font-size: 18px;

    color: #9CA3AF;

    text-decoration: line-through;

    margin-left: 10px;

}

.product-buttons {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.cart-btn {

    display: flex;

    justify-content: center;
    align-items: center;

    background: #2563eb;

    color: #fff;

    padding: 14px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}

.cart-btn:hover {

    background: #1d4ed8;

}

.details-btn {

    display: flex;

    justify-content: center;
    align-items: center;

    border: 2px solid #2563eb;

    color: #2563eb;

    padding: 13px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}

.details-btn:hover {

    background: #2563eb;

    color: #fff;

}

/*==============================*/

@media(max-width:1200px) {

    .featured-container {

        width: calc(100% - 80px);

    }

    .featured-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .featured-products {

        padding: 70px 0;

    }

    .featured-container {

        width: calc(100% - 40px);

    }

    .featured-heading h2 {

        font-size: 36px;

    }

    .featured-heading p {

        font-size: 16px;

    }

    .featured-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .product-card {

        padding: 25px;

    }

    .product-card img {

        height: 200px;

    }

}

/*==================================
        WHY BUY FROM KENOWIT
==================================*/

.why-shop {

    width: 100%;
    padding: 100px 0;
    background: #ffffff;

}

.why-shop-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

}

/*==============================*/

.why-shop-heading {

    text-align: center;
    margin-bottom: 70px;

}

.why-shop-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.why-shop-heading h2 {

    margin: 18px 0;

    font-size: 48px;

    font-weight: 800;

    color: #111827;

}

.why-shop-heading h2 span {

    color: #2563eb;

}

.why-shop-heading p {

    max-width: 720px;

    margin: auto;

    font-size: 20px;

    color: #64748b;

    line-height: 1.8;

}

/*==============================*/

.why-shop-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.why-card {

    background: #fff;

    border: 1px solid #E5E7EB;

    border-radius: 22px;

    padding: 35px;

    text-align: center;

    transition: .35s;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);

}

.why-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(37, 99, 235, .15);

}

.why-card img {

    width: 90px;

    height: 90px;

    object-fit: contain;

    margin-bottom: 25px;

}

.why-card h3 {

    font-size: 24px;

    color: #111827;

    margin-bottom: 15px;

}

.why-card p {

    font-size: 16px;

    color: #64748b;

    line-height: 1.8;

}

/*==============================*/

@media(max-width:1200px) {

    .why-shop-container {

        width: calc(100% - 80px);

    }

    .why-shop-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .why-shop {

        padding: 70px 0;

    }

    .why-shop-container {

        width: calc(100% - 40px);

    }

    .why-shop-heading h2 {

        font-size: 36px;

    }

    .why-shop-heading p {

        font-size: 16px;

    }

    .why-shop-grid {

        grid-template-columns: 1fr;

    }

}

/*==================================
      SHOP BY LEARNING LEVEL
==================================*/

.learning-level {

    width: 100%;
    padding: 100px 0;
    background: #f8fbff;

}

.learning-level-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

}

.learning-level-heading {

    text-align: center;
    margin-bottom: 70px;

}

.learning-level-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.learning-level-heading h2 {

    margin: 18px 0;
    font-size: 48px;
    font-weight: 800;
    color: #111827;

}

.learning-level-heading h2 span {

    color: #2563eb;

}

.learning-level-heading p {

    max-width: 760px;
    margin: auto;
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;

}

.learning-level-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.level-card {

    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
    text-align: center;
    padding: 30px;

}

.level-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);

}

.level-card img {

    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;

}

.level-tag {

    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;

}

.beginner {

    background: #DCFCE7;
    color: #166534;

}

.intermediate {

    background: #DBEAFE;
    color: #1D4ED8;

}

.advanced {

    background: #FEF3C7;
    color: #B45309;

}

.professional {

    background: #FCE7F3;
    color: #BE185D;

}

.level-card h3 {

    font-size: 26px;
    margin-bottom: 15px;
    color: #111827;

}

.level-card p {

    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;

}

.level-card a {

    display: inline-block;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;

}

.level-card a:hover {

    text-decoration: underline;

}

@media(max-width:1200px) {

    .learning-level-container {

        width: calc(100% - 80px);

    }

    .learning-level-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .learning-level {

        padding: 70px 0;

    }

    .learning-level-container {

        width: calc(100% - 40px);

    }

    .learning-level-heading h2 {

        font-size: 36px;

    }

    .learning-level-heading p {

        font-size: 16px;

    }

    .learning-level-grid {

        grid-template-columns: 1fr;

    }

}

/*==================================
        SPECIAL OFFERS
==================================*/

.special-offers {

    width: 100%;
    padding: 100px 0;
    background: #ffffff;

}

.offers-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

}

.offers-heading {

    text-align: center;
    margin-bottom: 70px;

}

.offers-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.offers-heading h2 {

    margin: 18px 0;
    font-size: 48px;
    font-weight: 800;
    color: #111827;

}

.offers-heading h2 span {

    color: #2563eb;

}

.offers-heading p {

    max-width: 720px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;

}

.offers-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.offer-card {

    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
    padding: 30px;
    text-align: center;

}

.offer-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);

}

.offer-discount {

    position: absolute;
    top: 20px;
    left: 20px;

    background: #ef4444;
    color: #fff;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

}

.offer-card img {

    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 25px;

}

.offer-card h3 {

    font-size: 26px;
    margin-bottom: 15px;
    color: #111827;

}

.offer-card p {

    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;

}

.offer-price {

    font-size: 30px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 25px;

}

.offer-price span {

    font-size: 18px;
    margin-left: 10px;
    color: #9CA3AF;
    text-decoration: line-through;

}

.offer-btn {

    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    padding: 15px;

    background: #2563eb;
    color: #fff;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}

.offer-btn:hover {

    background: #1d4ed8;

}

@media(max-width:1200px) {

    .offers-container {

        width: calc(100% - 80px);

    }

    .offers-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .special-offers {

        padding: 70px 0;

    }

    .offers-container {

        width: calc(100% - 40px);

    }

    .offers-heading h2 {

        font-size: 36px;

    }

    .offers-heading p {

        font-size: 16px;

    }

    .offers-grid {

        grid-template-columns: 1fr;

    }

}

/*==================================
      SHOP TESTIMONIALS
==================================*/

.shop-testimonials {

    width: 100%;
    padding: 100px 0;
    background: #f8fbff;

}

.shop-testimonials-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

}

.shop-testimonials-heading {

    text-align: center;
    margin-bottom: 70px;

}

.shop-testimonials-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.shop-testimonials-heading h2 {

    margin: 18px 0;
    font-size: 48px;
    font-weight: 800;
    color: #111827;

}

.shop-testimonials-heading h2 span {

    color: #2563eb;

}

.shop-testimonials-heading p {

    max-width: 720px;
    margin: auto;
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;

}

.testimonial-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.testimonial-card {

    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;

}

.testimonial-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);

}

.stars {

    color: #FBBF24;
    font-size: 22px;
    margin-bottom: 20px;

}

.testimonial-card p {

    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;

}

.testimonial-user {

    display: flex;
    align-items: center;
    gap: 15px;

}

.testimonial-user img {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;

}

.testimonial-user h4 {

    color: #111827;
    margin-bottom: 5px;

}

.testimonial-user span {

    color: #64748b;
    font-size: 15px;

}

@media(max-width:1200px) {

    .shop-testimonials-container {

        width: calc(100% - 80px);

    }

    .testimonial-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .shop-testimonials {

        padding: 70px 0;

    }

    .shop-testimonials-container {

        width: calc(100% - 40px);

    }

    .shop-testimonials-heading h2 {

        font-size: 36px;

    }

    .shop-testimonials-heading p {

        font-size: 16px;

    }

    .testimonial-grid {

        grid-template-columns: 1fr;

    }

}

/*==================================
            SHOP FAQ
==================================*/

.shop-faq {

    width: 100%;
    padding: 100px 0;
    background: #ffffff;

}

.shop-faq-container {

    width: calc(100% - 240px);
    max-width: 1000px;
    margin: auto;

}

.shop-faq-heading {

    text-align: center;
    margin-bottom: 60px;

}

.shop-faq-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.shop-faq-heading h2 {

    font-size: 48px;
    margin: 18px 0;
    color: #111827;
    font-weight: 800;

}

.shop-faq-heading h2 span {

    color: #2563eb;

}

.shop-faq-heading p {

    font-size: 20px;
    color: #64748b;
    line-height: 1.8;

}

.faq-item {

    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;

}

.faq-question {

    width: 100%;
    padding: 25px 30px;
    border: none;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    color: #111827;

}

.faq-question span {

    font-size: 28px;
    color: #2563eb;

}

.faq-answer {

    display: none;
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.8;

}

.faq-item.active .faq-answer {

    display: block;

}

.faq-item.active .faq-question span {

    transform: rotate(45deg);

}

@media(max-width:1200px) {

    .shop-faq-container {

        width: calc(100% - 80px);

    }

}

@media(max-width:768px) {

    .shop-faq {

        padding: 70px 0;

    }

    .shop-faq-container {

        width: calc(100% - 40px);

    }

    .shop-faq-heading h2 {

        font-size: 36px;

    }

    .shop-faq-heading p {

        font-size: 16px;

    }

    .faq-question {

        font-size: 17px;
        padding: 20px;

    }

    .faq-answer {

        padding: 0 20px 20px;

    }

}

/*==================================
        SHOP NEWSLETTER
==================================*/

.shop-newsletter{

    width:100%;
    padding:100px 0;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);

}

.newsletter-container{

    width:calc(100% - 240px);
    max-width:900px;
    margin:auto;
    text-align:center;

}

.newsletter-container span{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 20px;

    border-radius:30px;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

}

.newsletter-container h2{

    margin:25px 0;

    font-size:48px;

    color:#fff;

    line-height:1.25;

    font-weight:800;

}

.newsletter-container p{

    color:#DBEAFE;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.newsletter-form{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:40px;

}

.newsletter-form input{

    flex:1;

    max-width:500px;

    height:58px;

    border:none;

    outline:none;

    border-radius:10px;

    padding:0 20px;

    font-size:17px;

}

.newsletter-form button{

    height:58px;

    padding:0 35px;

    border:none;

    border-radius:10px;

    background:#111827;

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.newsletter-form button:hover{

    background:#000;

}

.newsletter-features{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    color:#fff;

    font-weight:700;

    font-size:17px;

}

@media(max-width:1200px){

    .newsletter-container{

        width:calc(100% - 80px);

    }

}

@media(max-width:768px){

    .shop-newsletter{

        padding:70px 0;

    }

    .newsletter-container{

        width:calc(100% - 40px);

    }

    .newsletter-container h2{

        font-size:34px;

    }

    .newsletter-container p{

        font-size:16px;

    }

    .newsletter-form{

        flex-direction:column;

    }

    .newsletter-form input,

    .newsletter-form button{

        width:100%;
        max-width:none;

    }

    .newsletter-features{

        flex-direction:column;
        gap:15px;

    }

}