<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset */
body {
    font-family: 'Garamond', serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    display: flex;
}

/* Sidebar Navigation */
.sidebar {
    width: 250px;
    background: #111;
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.sidebar .logo img {
    width: 150px;
}

.sidebar .nav-links {
    list-style: none;
    padding: 0;
    width: 100%;
}

.sidebar .nav-links li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
}

.sidebar .nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    display: block;
}

.sidebar .nav-links li a.active {
    background: #800080;
}

.sidebar .nav-links li:hover {
    background: #800080;
}

/* Main Content */
.main-content {
    margin-left: 250px;
    width: calc(100% - 250px);
    padding: 50px;
}

/* Services Section */
.services-section {
    text-align: center;
    background: #222;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(128, 0, 128, 0.5);
    border: 2px solid #800080;
    max-width: 900px;
    margin: auto;
}

.services-section h2 {
    color: #cdaaff;
    font-size: 28px;
    font-family: 'Garamond', serif;
    margin-bottom: 10px;
}

.services-section p {
    color: #ddd;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Service List */
.services-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(205, 170, 255, 0.5);
}

.service-item img {
    width: 100%;
    border-radius: 10px;
}

.service-item h3 {
    color: #cdaaff;
    margin: 10px 0;
}

.service-item p {
    font-size: 14px;
}

.price-range {
    font-size: 18px;
    color: #ffcc00;
    font-weight: bold;
}

/* Order Button */
.btn {
    background: linear-gradient(90deg, #800080, #cdaaff);
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background: linear-gradient(90deg, #cdaaff, #800080);
    box-shadow: 0px 0px 15px rgba(205, 170, 255, 0.8);
}
</pre></body></html>