.product-intro {
    background: transparent;   /* removes grey */
    padding: 40px 40px;        /* reduced top & bottom space */
    text-align: center;
    background-color: #216974;
}

.product-intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.product-intro h2 {
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 20px;   /* reduced spacing */
    color: #d0a04f;
}

.product-intro p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto 30px auto;
    color: #fff;
}

.discover-link {
    display: inline-block;
    position: relative;
    padding: 8px 20px;
    border: 2px solid #d0a04f;
    text-decoration: none;
    color: #fff;
}

.discover-link::after {
    /* content: ""; */
    position: absolute;
    width: 110px;
    height: 1px;
    background: #d0a04f;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.discover-link:hover {
    background: #d0a04f;
    color: white;
    margin: auto;
}

@media (max-width: 768px) {
    .product-intro {
        padding: 40px 20px;
        margin-top: 50px;
    }

    .product-intro h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .product-intro p {
        font-size: 14px;
        margin-bottom: 25px;
    }
}