.hero {
    background: linear-gradient(to right, var(--deep-navy), var(--bright-blue));
    color: var(--almost-white);
    text-align: center;
    padding: 6rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin: 0 auto 2rem;
    max-width: 700px;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta a {
    font-size: 1.1rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--almost-white);
}

.btn-primary {
    background-color: var(--almost-white);
    color: var(--deep-navy);
}

.btn-primary:hover {
    background-color: var(--silver);
    border: 2px solid var(--silver);
}

.btn-secondary {
    background-color: transparent;
    color: var(--almost-white);
}

.btn-secondary:hover {
    background-color: var(--bright-blue);
    border-color: var(--bright-blue);
}

/* Product Overview */
.product-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    gap: 2rem;
}

.product-section h1 {
    font-size: 3rem;
}

.product-overview {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    /* margin-top: 4rem; */
}

.product {
    flex: 1 1 45%;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.product h2 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}

.product p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-family: Calibri, 'Trebuchet MS', sans-serif;
}

.link-button {
    color: var(--bright-blue);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: Calibri, 'Trebuchet MS', sans-serif;
}

.link-button:hover {
    text-decoration: underline;
}

/* Testimonial strip */
.testimonial-strip {
    background-color: var(--light-gray);
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 3rem;
    font-style: italic;
    border-top: 2px solid var(--silver);
    border-bottom: 2px solid var(--silver);
}

.testimonial-strip h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Call to Action Section */
.call-to-action {
    text-align: center;
    padding: 4rem 2rem;
}

.call-to-action h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Responsive Layouts */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-overview {
        flex-direction: column;
    }

    .product {
        flex: 1 1 100%;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}