/* shared between webview and web */

.static-content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 25px 50px 25px;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.static-content-container h1 {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
    color: #111;
}

.static-content-container h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 0px;
    color: #111;
}

.static-content-container p {
    margin-bottom: 1.2em;
}

.static-content-container .sub-list p {
    margin-bottom: 0.5em;
}

.static-content-container .address-block {
    background-color: #f9f9f9;
    border-left: 3px solid #ddd;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.static-content-container a {
    color: #007bff;
    text-decoration: none;
    word-break: break-all; /* For long links */
}

.static-content-container a:hover {
    text-decoration: underline;
}

.static-content-container hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .static-content-container {
        padding: 15px;
    }
    .static-content-container h1 {
        font-size: 24px;
    }
    .static-content-container h2 {
        font-size: 18px;
    }
    .static-content-container p {
        font-size: 15px;
    }
}