/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}

/* Header */
header {
    background: #6a0dad; /* main purple */
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #e0c3fc; /* light purple hover */
}
/* Pricing Section */
.pricing {
    padding: 50px;
    background: #f9f5ff;
    text-align: center;
}

.pricing h2 {
    color: #6a0dad;
    margin-bottom: 30px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.price-card h3 {
    color: #6a0dad;
}

/* Map */
.map {
    padding: 50px;
    text-align: center;
}

/* Button */
.btn {
    display: inline-block;
    background: #6a0dad;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.btn:hover {
    background: #8e44ad;
}
/* About Section */
.about {
    padding: 50px;
    background: #f9f5ff; /* very light purple */
}

.about-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-photo img {
    border-radius: 50%;
    border: 4px solid #6a0dad;
}

.about-text h2 {
    color: #6a0dad;
}

/* Services */
.services {
    padding: 50px;
    text-align: center;
    background: white;
}

.services h2 {
    color: #6a0dad;
    margin-bottom: 20px;
}

.services li {
    padding: 10px;
    font-size: 18px;
}

/* Contact */
.contact {
    padding: 50px;
    background: #f3e8ff; /* soft purple */
    text-align: center;
}
button {
    background: #6a0dad;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

button:hover {
    background: #8e44ad;
}
.contact h2 {
    color: #6a0dad;
}

.contact a {
    color: #6a0dad;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #6a0dad;
    color: white;
    text-align: center;
    padding: 15px;
}