<style>
.quote-section {
background-color: #fff;
border-left: 5px solid #15455d;
padding: 8px 48px;
margin: 8px auto;
max-width: 1200px;
box-sizing: border-box;
font-family: 'Segoe UI', sans-serif;
}
.quote-section-inner {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.quote-section .text {
flex: 1 1 60%;
font-size: 1.8rem;
color: #15455d;
}
.quote-section .text strong {
font-size: 3.0rem;
}
.quote-section .cta {
flex: 0 0 auto;
}
.quote-section .cta a {
background-color: #15455d;
color: #fff;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 2.0rem;
display: inline-block;
}
/* ✅ Combined all mobile styles here */
@media (max-width: 768px) {
.quote-section-inner {
flex-direction: column;
text-align: center;
}
.quote-section .text {
flex: 1 1 100%;
font-size: 1.6rem;
}
.quote-section .cta {
margin-top: 16px;
flex: 1 1 100%;
}
.quote-section .cta a {
font-size: 1.6rem;
padding: 12px 30px;
}
.brand-buttons {
text-align: center;
}
.brand-buttons a {
display: block;
margin: 10px auto;
width: max-content;
}
}
</style>
<!-- Enterprise Quote Section -->
<div class="quote-section">
<div class="quote-section-inner">
<div class="text">
<strong>Need Bulk Quantities Monthly?</strong><br>We offer custom pricing, branding, and delivery schedules for large-scale requirements.<br>📩 Contact us for an enterprise quote: <a href="mailto:info@conticare.in" style="color: #28a745; font-weight: 600;">info@conticare.in</a>
</div>
<div class="cta"><a href="https://zxctrw-qt.myshopify.com/pages/request-a-quote">Request a Quote</a></div>
</div>
</div>