body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    line-height: 1.6;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

header img {
    max-width: 250px;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    background-color: #d81b60;
    color: #fff !important;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #b0154b;
}

.services {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing {
    padding: 80px 0;
}

.pricing table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.pricing td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.pricing td:last-child {
    text-align: right;
    font-weight: bold;
    color: #493424;
}

footer {
    background-color: #493424;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
