body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #ff6b6b, #ffa6a6);
}

header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ff5e5e;
    padding: 10px 20px;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    margin-inline: 25px;
}

.header-title {
    font-size: 20px;
    font-weight: bold;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-buttons a {
    text-decoration: none;
    color: #cc2323;
    background-color: white;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.header-buttons a:hover {
    background-color: rgb(225, 225, 225);
}

.container {
    padding: 20px;
    text-align: center;
    max-width: 800px;
    background: white;
    border: 2px solid #ffcccc;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 60px; 
}

.help-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffe6e6;
    border-radius: 8px;
    border: 1px solid #ffb3b3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.help-section h2 {
    color: #cc2323;
    font-size: 24px;
    margin-bottom: 15px;
}

.help-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    .container h1 {
        margin-top: 55px;
    }

    .header-title {
        margin-bottom: 15px;
    }

    .header-buttons {
        flex-direction: column;
        width: 50%;
        align-items: center;
    }

    .header-buttons a {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    .container {
        padding: 15px;
    }

    .help-section h2 {
        font-size: 20px;
    }
}