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

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
    background: #f8f7f4;
}

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

.topbar {
    background: #b22222;
    color: #fff;
    font-size: 0.9rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: #ffffff;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.hero p {
    margin-bottom: 25px;
}

.info-box {
    background: #f1ede6;
    padding: 25px;
    border-radius: 8px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #b22222;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn.secondary {
    background: #333;
}

.services {
    padding: 60px 0;
}

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

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

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
}

.reviews {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.rating {
    margin: 15px 0 30px;
    font-weight: 600;
}

.quotes blockquote {
    margin: 15px auto;
    max-width: 600px;
    font-style: italic;
}

.location {
    background: #f1ede6;
    padding: 60px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.location iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
}

.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .cards,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
