
        :root {
            --primary-color: #00796b;
            --secondary-color: #e0f2f1;
            --background-color: #f5f5f5;
            --text-color: #333333;
            --light-text-color: #757575;
        }

        body {
            margin: 0;
            font-family: 'Roboto', 'Segoe UI', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            text-align: center;
        }

        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

        .full-width-header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-content h1 {
            font-size: 24px;
            margin: 0;
            font-weight: 700;
        }

        .header-content .tag {
            font-size: 14px;
            opacity: 0.9;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: -6px; 
        }

        .headline {
            font-size: 40px;
            font-weight: 700;
            margin: 50px 0 25px;
            line-height: 1.2;
            color: var(--primary-color);
        }

        .hero-image {
            width: 100%;
            max-width: 800px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .caption {
            font-size: 16px;
            color: var(--light-text-color);
            margin: 25px auto;
            max-width: 700px;
        }

        .card {
            background-color: white;
            padding: 30px;
            margin: 40px auto;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: left;
            border-top: 5px solid var(--primary-color);
        }

        .card h2,
        .card h1 {
            font-size: 22px;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .card h1 {
            margin-top: 30px;
        }

        .card ul {
            list-style-type: none;
            padding: 0;
            margin: 10px 0;
        }

        .card ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
        }

        .card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .question {
            font-size: 26px;
            font-weight: 700;
            margin: 40px auto 20px;
            color: var(--text-color);
        }

        .buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .buttons a {
            text-decoration: none;
            display: inline-block;
            width: 100%;
            max-width: 320px;
        }

        .buttons button {
            width: 100%;
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 18px 20px;
            font-size: 18px;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .buttons button:hover {
            background-color: #004d40;
        }

        .full-width-footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 30px 20px;
            font-size: 14px;
            text-align: left;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .full-width-footer a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
        }

        .full-width-footer a:hover {
            text-decoration: underline;
        }

        .full-width-footer p {
            margin: 8px 0;
        }

        .disclaimer {
            font-size: 13px;
            line-height: 1.5;
            margin-top: 15px;
            color: #b2dfdb;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                justify-content: center;
            }

            .header-content h1 {
                font-size: 20px;
                margin-bottom: 5px;
            }

            .header-content .tag {
                font-size: 12px;
            }

            .headline {
                font-size: 28px;
                margin: 30px 0 15px;
            }

            .caption {
                font-size: 14px;
            }

            .card {
                padding: 20px;
                margin: 20px;
            }

            .card h2,
            .card h1 {
                font-size: 20px;
            }

            .question {
                font-size: 22px;
                margin: 30px auto 15px;
            }

            .buttons a {
                max-width: 80%;
            }

            .buttons button {
                padding: 15px 10px;
                font-size: 16px;
            }

            .full-width-footer {
                padding: 20px;
            }
            
            .footer-content p {
                text-align: center;
            }
        }
  

:root {
    --primary-color: #00796b; 
    --secondary-color: #e0f2f1; 
    --background-color: #f5f5f5; 
    --text-color: #333333;
    --light-text-color: #757575;
}

body {
    margin: 0;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.full-width-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.header-content .tag {
    font-size: 14px;
    opacity: 0.9;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: left; 
}


.content-section {
    margin-bottom: 25px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 50px 0 25px;
    line-height: 1.2;
    color: var(--primary-color);
    text-align: center;
}

h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-top: 25px;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}

p, ul {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

.full-width-footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 30px 20px;
    font-size: 14px;
    text-align: left;
    margin-top: 50px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.full-width-footer a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 500;
}

.full-width-footer a:hover {
    text-decoration: underline;
}

.full-width-footer p {
    margin: 8px 0;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 15px;
    color: #b2dfdb;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        justify-content: center;
    }

    .header-content h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .header-content .tag {
        font-size: 12px;
    }

    h1 {
        font-size: 28px;
        margin: 30px 0 15px;
    }

    h2 {
        font-size: 20px;
    }

    .full-width-footer {
        padding: 20px;
    }

    .footer-content p {
        text-align: center;
    }
}