
<link href="default.css" rel="stylesheet" type="text/css" />

<style>

/* ===== HARD RESET FOR THIS PAGE ONLY ===== */
body {
    margin: 0;
    padding: 0;
}

.mastertable,
.contentcolumn,
.menucolumn,
table {
    all: unset;
}

/* ===== PAGE WRAPPER ===== */
.town-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== HERO SECTION ===== */
.town-hero {
    text-align: center;
    margin-bottom: 40px;
}

.town-hero h1 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.license {
    font-size: 16px;
    margin-top: 10px;
}

.phone-large {
    font-size: 32px;
    margin: 25px 0;
    font-weight: bold;
}

/* ===== BODY TEXT ===== */
.town-content {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.town-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    text-align: center;
    margin: 50px 0;
}

.services-grid h3 {
    font-size: 20px;
    margin: 0;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 6px;
}

/* ===== MOBILE ADJUST ===== */
@media (max-width: 768px) {

    .town-content {
        font-size: 16px;
    }

    .phone-large {
        font-size: 26px;
    }
}

</style>
