/* --- DETAIL SLUŽBY - KOMPAKTNÁ VERZIA --- */

.detail-page {
    background-color: #f4f7f9;
}

/* Hlavný kontajner - zmenšená šírka na 900px */
.service-detail-container {
    max-width: 950px !important;
    margin: 50px auto !important;
    padding: 0 20px;
}

/* Biela karta služby */
.service-detail-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
    border: 1px solid #eef2f6;
}

/* Hlavička */
.detail-header {
    margin-bottom: 35px;
}

.detail-header h1 {
    color: #0a3d62 !important;
    font-size: 2.2rem !important;
    font-weight: 800;
    margin: 0;
}

.accent-line {
    width: 50px;
    height: 4px;
    background: #4da3ff;
    margin-top: 10px;
    border-radius: 2px;
}

/* Rozloženie: Obrázok a Text */
.detail-content {
    display: flex !important;
    gap: 40px !important;
    align-items: center !important; /* Vycentrovanie na stred výšky */
}

/* Obrázok - fixná veľkosť, aby nebol obrovský */
.detail-image {
    flex: 0 0 40% !important;
}

.detail-image img {
    width: 100% !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* Textová časť */
.detail-text {
    flex: 1 !important;
}

.detail-text h3 {
    color: #0a3d62;
    margin-top: 0;
    font-size: 1.4rem;
}

.detail-text p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Odrážky */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefit-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #4a5568;
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4da3ff;
    font-weight: bold;
}

/* Tlačidlo */
.btn-order {
    display: inline-block !important;
    background: #0a3d62 !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-order:hover {
    background: #4da3ff !important;
    transform: translateY(-2px);
}

/* Mobilná verzia */
@media (max-width: 800px) {
    .detail-content {
        flex-direction: column !important;
    }
    .detail-image {
        width: 100% !important;
    }
    .service-detail-card {
        padding: 25px !important;
    }
}