
    .container {
        max-width: 1100px;
        margin: auto;
        padding: 50px 20px;
        text-align: center;
    }

    h2 {
        color: #ffbd2b;
        margin-bottom: 5px;
        font-size: 28px;
    }
    

    .subtext {
        color: #ccc;
        margin-bottom: 40px;
        font-size: 14px;
    }

    .content-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .left img {
        width: 350px;
        max-width: 100%;
        border-radius: 12px;
    }

    .right {
        max-width: 600px;
        text-align: left;
        line-height: 1.7;
    }

    .right h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #fff;
    }

    @media(max-width: 768px) {
        .content-box {
            flex-direction: column;
            text-align: center;
        }

        .right {
            text-align: center;
        }
    }