html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

.service-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

/* Title */
.service-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* Description */
.service-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service list */
.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    font-size: 16px;
    padding: 8px 0;
    color: #333;
}

/* Call-to-action */
.service-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #0056b3;
}

/* Highlighted examples */
.example-site {
    color: #007bff;
    font-weight: 600;
}

/* Stronger CTA variant */
.highlight-btn {
    background: linear-gradient(135deg, #007bff, #00b4ff);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.highlight-btn:hover {
    background: linear-gradient(135deg, #0056b3, #0096d6);
    box-shadow: 0 10px 24px rgba(0, 86, 179, 0.4);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #1D2A62;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
}