.static-page {
    margin: 0;
    padding: 0;
}

.static-page-hero {
    background: linear-gradient(135deg, var(--safety-orange) 0%, #ff8020 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.static-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.static-page-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.static-page-subheadline {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.static-page-content {
    background: var(--light-gray);
    padding: 60px 20px;
    min-height: 50vh;
}

.static-page-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.static-page-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--asphalt-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.static-page-container h2:first-child {
    margin-top: 0;
}

.static-page-container h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--asphalt-black);
    margin-top: 25px;
    margin-bottom: 10px;
}

.static-page-container p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.static-page-container ul,
.static-page-container ol {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
}

.static-page-container li {
    margin-bottom: 8px;
}

.static-page-container a {
    color: var(--safety-orange);
    text-decoration: none;
    font-weight: 600;
}

.static-page-container a:hover {
    text-decoration: underline;
}

.static-page-container strong {
    color: var(--asphalt-black);
}

.static-page-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--safety-orange);
    text-decoration: none;
    margin-bottom: 20px;
}

.static-page-back:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .static-page-headline {
        font-size: 1.8rem;
    }

    .static-page-container {
        padding: 25px;
    }
}
