.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.business-detail {
    padding: 80px 0;
}

.business-detail.alt {
    background: var(--bg-light);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-grid.reverse {
    direction: rtl;
}

.detail-grid.reverse > * {
    direction: ltr;
}

.detail-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.business-detail.alt .service-item {
    background: var(--white);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.service-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-grid.reverse {
        direction: ltr;
    }

    .image-placeholder {
        height: 300px;
        font-size: 80px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .detail-content h2 {
        font-size: 28px;
    }
}
