body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    background: #35424a;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
    display: flex;
    align-items: center;
}

header #branding img {
    height: 50px; /* Adjust as needed */
    margin-right: 10px;
}

header .highlight, header .current a {
    color: #e8491d;
    font-weight: bold;
}

header a:hover {
    color: #cccccc;
    font-weight: bold;
}

h1, h2, h3 {
    color: #333;
}

.main-content {
    padding: 20px;
}

.app-icon-large {
    display: block;
    margin: 20px auto;
    max-width: 150px; /* Adjust as needed */
    border-radius: 22.5%; /* Standard iOS icon mask shape */
}

.download-buttons {
    text-align: center;
    margin: 30px 0;
}

.download-buttons a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
}

.download-buttons img {
    height: 50px; /* Adjust as needed */
}

footer {
    text-align: center;
    padding: 20px;
    background: #35424a;
    color: #ffffff;
    margin-top: 30px;
}

footer p {
    margin: 0;
}

/* For policy and support pages */
.page-title {
    text-align: center;
    margin-bottom: 20px;
}

.content-section {
    margin-bottom: 20px;
}

.content-section h2 {
    color: #35424a;
    border-bottom: 2px solid #e8491d;
    padding-bottom: 5px;
} 