:root {
    --primary-color: #ffffff;
    --primary-dark: #000000;
    --secondary-color: #007bff;
    --success-color: #28a745;
    --card-bg: #2b3768;
    --text-color: #ffffff;
    --heading-color: #ffffff;
    --text-muted: #dddddd;
    --section-bg: #2b3768;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #000000;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card h3 {
    margin: 10px 0;
    color: var(--heading-color);
}

.price-range {
    font-size: 0.9em;
    color: var(--text-muted);
    margin-top: 10px;
}

.additional-info {
    text-align: center;
    padding: 40px 20px;
    background: var(--section-bg);
    margin: 20px 0;
    border-radius: 15px;
    color: var(--text-color);
}
ul {
    list-style-type: none;
}

footer {
    background: #1a1a2e;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
