/* General reset and accessibility styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
}

/* Header styles with Hertfordshire Police branding */
.header {
    background-color: #003399;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
    position: relative;
}

.header img {
    width: 80px;
    vertical-align: middle;
}

.header h1 {
    margin: 10px 0 0 0;
    font-size: 1.8rem;
}

/* Main content styles */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

p {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* Religion list and links */
.religion-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.religion-link {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    padding: 15px;
    margin: 10px 0;
    background-color: #003399;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
}

.religion-link:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px;
    background-color: #003399;
    color: white;
    font-size: 1rem;
    position: relative;
    margin-top: 40px;
}

/* Mobile responsiveness */
@media (min-width: 600px) {
    .content {
        max-width: 1000px;
    }

    .religion-link {
        width: 50%;
    }
}

.button {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: #003399;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.125rem;
    margin: 20px 0;
    transition: background-color 0.3s ease-in-out;
}

.install-button {
    background-color: #0078d7;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
}

.install-button:hover {
    background-color: #005ea6;
}