body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

h1, h2, h3 {
    font-family: 'Crimson Text', serif;
}

.caption, small, code {
    font-family: 'Roboto Mono', monospace;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 72px;
    margin-right: 24px;
}

.primary-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.primary-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.mobile-nav-toggle {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: transform 0.3s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hero {
    text-align: center;
    padding: 50px 0;
}

.hero h1 {
    font-size: 3em;
}

.hero-image {
    max-width: 100%;
    border-radius: 20px;
}

.trusted-by {
    margin-top: 20px;

}

.logos {
    display: flex;
    justify-content: center;
    gap: 30px; /* Increased gap between logos */
    flex-wrap: wrap;
}

.logos img {
    height: 30px;
}

.about {
    padding: 50px 0;
    text-align: justify;
}

.benefits {
    padding: 50px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
}

.icon {
    font-size: 2em;
}

.products-banner img {
    max-width: 100%;
    border-radius: 20px;
}

.products {
    padding: 50px 0;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-text {
    flex: 1;
}

.product-image {
    flex: 1;
    max-width: 50%;
    border-radius: 20px;
}

.testimonial {
    padding: 50px 0;
    display: flex;
    gap: 20px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-image {
    flex: 1;
    max-width: 50%;
    border-radius: 20px;
}

.contact {
    padding: 50px 0;
    text-align: center;
}

footer {
    background: #f8f8f8;
    padding: 20px 0;
    text-align: center;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    .mobile-nav-toggle {
        display: block;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .primary-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .primary-navigation.active {
        display: block;
    }

    .primary-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .primary-navigation li {
        width: 100%;
        text-align: center;
    }

    .primary-navigation a {
        display: block;
        padding: 10px;
        font-size: 1.2em;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .product-row, .product-row.reverse {
        flex-direction: column;
    }

    .product-image {
        max-width: 100%;
    }

    .testimonial {
        flex-direction: column;
    }
}