
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #F8F5FA;
    color: #2E2E2E;
}

/* Header */
header {
    text-align: center;
    padding: 30px;
    background-color: #C8A2C8;
    color: white;
}

.logo {
    width: 100px;
    margin-bottom: 10px;
}

/* Services */
.services {
    padding: 40px;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.service-card h3 {
    margin: 15px 0;
}

.service-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #9B6FA6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

/* Pricing Table */
.pricing {
    padding: 40px;
    display: flex;
    justify-content: center;
}

table {
    width: 60%;
    border-collapse: collapse;
    background: white;
}

th, td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #C8A2C8;
    color: white;
}

/* Back Button */
.back-btn {
    display: block;
    text-align: center;
    margin: 20px;
    text-decoration: none;
    color: #9B6FA6;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #C8A2C8;
    color: white;
}
