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

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.7;
    background-color: #f4f1ec;
    color: #2f2f2f;
}
.page-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.container {
    width: 85%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.hero {
    background: linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.35)
    ),
    url('images/hero.png') center/cover no-repeat;
    text-align: center;
    padding: 140px 20px;
    color: #ffffff;
}

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

.hero p {
    margin-bottom: 25px;
    font-size: 1.1rem;
color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    background-color: #6a5c50;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #54483f;
}

section {
    padding: 0 20px;
}

section h2 {
    margin-bottom: 25px;
    font-size: 1.7rem;
    font-weight: 600;
    color: #3a3a3a;
}

.about p,
.mobile p {
    max-width: 700px;
}

.services ul {
    list-style: none;
}

.services li {
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
}

.mobile {
    background-color: #f0ece6;
}

.contact {
    text-align: center;
    background-color: #ffffff;
}

.contact p {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 25px;
    background-color: #ded8cf;
    font-size: 0.9rem;
    color: #555;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .hero {
        padding: 70px 20px;
    }

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

    section h2 {
        font-size: 1.4rem;
    }
}

.prices {
    background-color: #ffffff;
}

.price-list {
    list-style: none;
    margin-top: 20px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ececec;
    font-size: 1rem;
}

.price-list span:last-child {
    font-weight: 600;
}

.mobile-note {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #555;
}
