:root {
            --primary: #1f3c88;
            --secondary: #f5f7fb;
            --accent: #4da3ff;
            --text-dark: #222;
            --text-light: #555;
            --border: #ddd;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 60px 20px;
        }

        h1, h2, h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        h1 {
            font-size: 2.6rem;
        }

        h2 {
            font-size: 2rem;
            margin-top: 60px;
        }

        h3 {
            font-size: 1.4rem;
        }

        p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .hero {
            background: linear-gradient(rgba(31,60,136,0.85), rgba(31,60,136,0.85)),
                        url("hero-laundromat.jpg") center / cover no-repeat;
            color: #fff;
            text-align: center;
            padding: 90px 20px;
        }

        .hero h1 {
            color: #fff;
        }

        .hero p {
            color: #e5e9ff;
            font-size: 1.2rem;
            max-width: 700px;
            margin: auto;
        }

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

        .card {
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }

        .image-placeholder {
            height: 220px;
            background-color: #e9edf5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-size: 0.95rem;
        }

        .card-content {
            padding: 25px;
        }

        .pricing {
            background-color: var(--secondary);
            border-radius: 6px;
            padding: 15px;
            margin-top: 15px;
        }

        .pricing ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing li {
            padding: 6px 0;
            border-bottom: 1px dashed var(--border);
            font-weight: bold;
        }

        .pricing li:last-child {
            border-bottom: none;
        }

        .cta {
            background-color: var(--primary);
            color: #fff;
            text-align: center;
            padding: 70px 20px;
            margin-top: 80px;
        }

        .cta h2 {
            color: #fff;
        }

        .cta p {
            color: #e5e9ff;
            font-size: 1.15rem;
            max-width: 700px;
            margin: 20px auto;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: #fff;
            padding: 14px 30px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 30px;
            text-decoration: none;
            margin-top: 20px;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background-color: #2b82e6;
        }
        img{
            height:100%;
            width:100%;
        }
        .DescriptionField{
            margin-top:20px;
        }
        .carousel-inner{
            display:block;
            margin-left:auto;
            margin-right:auto;
            margin-top:auto;
            margin-bottom:auto;
            height:800px;
        }
        .carousel-item{
            height:100%;
            width:100%;
        }
        footer{
            
            margin-left:auto;
            margin-right:auto;
            width:90%;
            text-align: center;
            padding-bottom: 100px;
            padding-top:20px;
        }
        hr{
            background-color:#1f3c88;
            border-width: 5px;
        }
        .site-credit {
        text-align: center;
        font-size: 0.85rem;
        padding-top: 20px;
        }

        .site-credit a {
        text-decoration: none;
        color:black;
        }

        .site-credit a:hover {
        color: #0d6efd;
        }

        .credit-line-2 {
        font-size: 0.8rem;
        }
        .navigation_contact{
            list-style: none;
        }
        .navigation_contact_details{
            color:#222;
            text-decoration: none;
        }

@media (min-width: 800px) {
    #mobileMap{
        display:none;
    }
    .carousel-inner{
        width:60%;
    }
    footer{
        column-count: 3;
    }
    hr{
        display:none;
    }
    
}
@media (max-width: 800px) {
    #desktopMap{
        display:none;
    }
    #mobileMap{
        width:90%;
    }
    .carousel-inner{
        height:100%;
    }
    .navigation_contact{
        display:none;
    }
    #mobileContact{
        width:100%;
        padding-left:3%;
    }
}