* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.business-card, .service-card {
    background-color: white;
    border: 2px solid #EA9F38;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

.business-card h1, .service-card h2 {
    color: #EA9F38;
    font-size: 24px;
    margin-bottom: 15px;
}

.business-card p, .service-card p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.service-card ul {
    text-align: left;
    margin: 10px 0;
    padding: 0 15px;
    list-style-type: disc;
    color: #333;
}

.service-card li {
    margin-bottom: 8px;
}

.cta-button {
    background-color: #EA9F38;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #d18b32;
}
