.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-detail {
    text-align: center;
    margin-bottom: 60px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image,
.feature-text {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.cta-section {
    background: var(--card-bg);
    border: 1px solid var(--dropdown-border);
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    margin-top: 40px;
}

.book-now-btn {
    display: inline-block;
    background-color: #0d5b02;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 20px;
    transition: transform .2s ease;
}

.book-now-btn:hover {
    transform: scale(1.05);
    background-color: #158006;
}

/* ============================================================
    PC Repair Page Specific Overrides
   ============================================================ */
/* Reduce the hero text box size for a tighter look */
.contact-hero-container .hero-inner {
    max-width: 550px;
}

/* Add mobile-specific override for the hero box */
@media (max-width: 768px) {
    .contact-hero-container .hero-inner {
        width: 85%;
        padding: 20px;
    }
}