/* Basic page structure */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header styles */
[data-role="header"] {
    background-color: #222;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.center {
    text-align: center;
}

/* Logo styling */
.logo {
    max-width: 80%;
    height: auto;
    margin: 10px 0;
}

/* Content styles */
[data-role="content"] {
    padding: 15px;
}

/* List view styles */
ul[data-role="listview"] {
    border: 1px solid #ddd;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

    ul[data-role="listview"] li.highlight {
        background-color: #f7f7f7;
        font-weight: bold;
    }

    ul[data-role="listview"] li h1, ul[data-role="listview"] li h2 {
        margin: 10px 0;
    }

/* Button styles */
a[data-role="button"] {
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    margin: 10px auto;
    max-width: 200px;
    text-align: center;
    border-radius: 8px;
}

    a[data-role="button"]:hover {
        background-color: #218838;
    }

#callnow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.number {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

/* Footer styles */
[data-role="footer"] {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
}

/* Image styles */
.full {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

/* Custom styles for smaller devices */
@media (max-width: 600px) {
    .logo {
        max-width: 60%;
    }

    .number {
        font-size: 1em;
    }
}
