.page-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
}

.service-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-list {
    display: grid;
    gap: 25px;
}

.service-item {
    padding: 25px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.service-item .price {
    color: #10b981;
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.service-item .price-unit {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.service-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item ul li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f3f4f6;
}

.service-item ul li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 8px;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.sidebar-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #666;
}

.guarantee-list {
    list-style: none;
    padding: 0;
}

.guarantee-list li {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #f3f4f6;
}

.guarantee-list li:before {
    content: "🛡️ ";
    margin-right: 8px;
}

@media (max-width: 968px) {
    .service-detail {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}
