* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #fff;
}
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.content-center {
    text-align: center;
}
.logo {
    width: 18rem;
    margin: 0 auto 3rem;
    display: block;
}
@media (min-width: 768px) {
    .logo {
    width: 24rem;
}
}.main-title {
    font-size: 1.875rem;
    font-weight: 300;
    /* margin-bottom: 1.5rem; */
    color: #111827;
    letter-spacing: .05em;
}
@media (min-width: 768px) {
    .main-title {
    font-size: 2.25rem;
}
}.subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #374151;
}
@media (min-width: 768px) {
    .subtitle {
    font-size: 1.5rem;
}
}.footer {
    padding: 1.5rem 1rem;
    border-top: 1px solid #f3f4f6;
}
.footer-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 768px) {
    .footer-content {
    flex-direction: row;
}
}.copyright {
    font-size: .875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .copyright {
    margin-bottom: 0;
}
}.contact-link-container {
    font-size: .875rem;
}
.contact-link {
    color: #6b7280;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .875rem;
    transition: color .2s ease;
}
.contact-link:hover {
    color: #1f2937;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000c;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 1rem;
}
.modal-overlay.show {
    display: flex;
}
.modal-content {
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: 0 25px 50px -12px #00000040;
    max-width: 42rem;
    max-height: 80vh;
    width: 100%;
    overflow-y: auto;
    position: relative;
}
.modal-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}
.close-button {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    opacity: .7;
    transition: opacity .2s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
}
.close-button:hover {
    opacity: 1;
    background-color: #f3f4f6;
}
.modal-body {
    padding: 0 1.5rem 1.5rem;
    font-size: .875rem;
    color: #374151;
    line-height: 1.6;
}
.modal-body p {
    margin-bottom: 1rem;
}
.modal-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    color: #111827;
}
.modal-body ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: .5rem;
    margin-bottom: 1rem;
}
.modal-body li {
    margin-bottom: .25rem;
}
.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem!important;
}
.gdpr-compliance {
    margin-top: 1.5rem!important;
    font-weight: 500;
}
.modal-overlay {
    opacity: 0;
    transition: opacity .2s ease-out;
}
.modal-overlay.show {
    opacity: 1;
}
.modal-content {
    transform: scale(.95);
    transition: transform .2s ease-out;
}
.modal-overlay.show .modal-content {
    transform: scale(1);
}