body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    background: #2e8b57;
    color: white;
    padding: 20px;
}

.pricing {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
}

.service {
    margin-bottom: 20px;
    padding: 10px;
    border-left: 5px solid #2e8b57;
}

footer {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

/* New call-to-action button styling */
.call-button {
    display: inline-block;
    background-color: #2e8b57;   /* matches your header/brand green */
    color: #fff;
    padding: 12px 24px;
    margin-top: 12px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.call-button:hover {
    background-color: #246b45;   /* slightly darker green */
    transform: translateY(-2px); /* subtle lift effect */
}
