.page-header {
    background: var(--primary);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.services-list {
    padding: 4rem 0;
}

.service-detail {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: 0.3s;
}

.service-detail:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detail h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-detail p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-detail ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.service-detail.urgent {
    border: 2px solid #e53e3e;
    background: #fff5f5;
}

.btn-urgent {
    background: #e53e3e;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-urgent:hover {
    background: #c53030;
}

.service-detail.highlight {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 2px solid var(--secondary);
}

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.plan {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.plan h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary);
    margin: 1rem 0;
}

.plan ul {
    margin: 1rem 0;
}

.plan ul li {
    font-size: 0.9rem;
}