header{
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 20px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}
        html,
        body {
            height: 100%;
            margin: 0;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;

        }

        .benefits-section {
            display: flex;
            flex-direction: column;
            align-items: center;

            max-width: 900px;
            padding: 0 20px;
        }

        .benefits-title {
            color: #c90000;

            font-size: 46px;

            font-weight: bold;
            line-height: 1.3;
            margin-bottom: 25px;
            font-family: Georgia, serif;
        }

        .benefits-section img {
            max-width: 100%;
            height: auto;
            margin-bottom: 30px;
        }

        .benefits-text {
            width: 100%;
            text-align: left;
            font-family: sans-serif;
            font-size: 18px;
            line-height: 1.6;
        }

        .benefit-item {
            padding: 20px;
            border-radius: 10px;
            font-family: sans-serif;
        }
        .benefit-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            margin-bottom: 25px;
            border-radius: 8px;
        }

        .benefit-content {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
        }

        .benefit-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .benefit-content ul li {
            margin-bottom: 5px;
        }

        .benefit-button {
            display: inline-block;
            margin-top: 25px;
            padding: 12px 25px;
            background-color: #c90000;
            color: #fff;
            font-weight: bold;
            text-decoration: none;
            border-radius: 6px;
            text-align: center;
            transition: background-color 0.3s;
        }

        .benefit-button:hover {
            background-color: #a30000;
        }


        .main-centered {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 40px auto;
            max-width: 900px;
            padding: 0 20px;
            font-family: sans-serif;
        }

        .main-centered section,
        .main-centered div {
            text-align: left;
            width: 100%;
        }

        footer {
            border-top: 1px solid #ccc;
            padding: 30px 20px;
            font-family: sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #333;

        }

        .sectionContainer {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        footer a {
            color: #007bff;
            text-decoration: none;
            margin: 0 10px;
        }

        .logo {
            max-width: 200px;
            margin-bottom: 15px;
        }
        .benefit-review{
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .benefit-review img{
            max-width: 250px;
            width: 100%;
        }