/* --- Global Variables and Resets --- */
:root {
    --bg-color-page: rgba(226, 233, 230, 0.61);
    --bg-color-footer: #d2dcdd;
    --bg-color-card: #ffffff;
    --text-color-main: #060606;
    --button-bg: #147b35;
    --button-bg-hover: #108521;
    --button-text-color: #ffffff;

    --font-primary: 'ABeeZee', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-button: 'Tahoma', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-color-page);
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Page Layout --- */
.page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
}

.content-card {
    background-color: var(--bg-color-card);
    border-radius: 4px;
    max-width: 860px;
    /* Adjusted to fit content nicely */
    width: 100%;
    padding: 48px 64px;
}

/* --- Content Elements --- */
.main-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 24px;
}

.text-content {
    margin: 24px 0;
    color: var(--text-color-main);
    font-family: var(--font-primary);
    font-size: 23px;
    line-height: 1.5;
}

.text-content strong {
    font-weight: bold;
}

/* --- Call-to-Action Button --- */
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: var(--button-bg);
    color: var(--button-text-color);
    font-family: var(--font-button);
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    width: 76%;
    margin: 32px auto;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--button-bg-hover);
}

.cta-button svg {
    height: 28px;
    width: auto;
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-color-footer);
    padding: 24px 16px;
    text-align: center;
    font-size: small;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer .copyright {
    font-weight: 500;
    margin-bottom: 24px;
}

.footer .disclaimer {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}


/* --- Responsive Adjustments --- */
@media screen and (max-width: 768px) {
    .content-card {
        padding: 20px 15px 40px 15px;
    }

    .text-content {
        font-size: 17px;
        line-height: 1.4;
    }

    .cta-button {
        width: 100%;
        font-size: 22px;
        /* 'large' is relative, better to use a specific size */
        margin-top: 20px;
    }
}