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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

.demo-banner {
    background-color: #e7f1ff;
    color: #1d4ed8;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #c7ddff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    color: #fff;
    padding: 15px 20px;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero p {
    margin-bottom: 20px;
    color: #555;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.primary {
    background: #6c8ea4;
    color: white;
}

.secondary {
    border: 1px solid #6c8ea4;
    color: #6c8ea4;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 5px;
}

.card h3 {
    margin-bottom: 10px;
}

.card a {
    color: #6c8ea4;
    font-size: 0.9rem;
}

.obituaries h2 {
    text-align: center;
    margin-bottom: 20px;
}

.obituary {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.obituary a {
    color: #6c8ea4;
    font-size: 0.9rem;
}

.trust {
    text-align: center;
}

.trust-points {
    text-align: center;
}

.trust-points li {
    margin: 10px 0;
}

.cta {
    text-align: center;
    background: #2c3e50;
    color: white;
    border-radius: 5px;
}

.cta-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
}

@media(max-width:768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #2c3e50;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
        }
}

.nav-links.active {
    display: flex;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-buttons, .cta-buttons {
        flex-direction: column;
    }
}