/* Color Palette: Purples and Soft Grays */
:root {
    --primary-purple: #5a3e7a; /* Based on Logo */
    --light-purple: #f3f0f7;
    --dark-text: #333;
    --white: #ffffff;
    --accent: #8e74ad;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    background: rgba(90, 62, 122, 0.7); /* Purple Overlay */
    padding: 2rem;
    border-radius: 8px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Sections */
.content-section {
    padding: 4rem 10%;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: space-around;
    background: var(--light-purple);
    padding: 4rem 5%;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    width: 30%;
    border-top: 5px solid var(--primary-purple);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Rates Table */
.rates-section {
    padding: 4rem 10%;
}

.table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 1rem;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-purple);
}

tr:nth-child(even) {
    background-color: var(--light-purple);
}

/* Buttons & Forms */
.btn {
    display: inline-block;
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form select, .contact-form textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

footer {
    background: var(--primary-purple);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
}