* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    text-align: center;
    padding: 50px;
}

.header-image {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 20px;
}

.continue-button {
    background-color: #FF7F00;
    color: white;
    font-size: 1.2em;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.continue-button:hover {
    background-color: #FF5C00;
}

@media (max-width: 768px) {
    .title {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }

    .continue-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}
