body {
        margin-top: 0;
        font-family: Arial, sans-serif;
        background: #f4f4f4;
       
    }

    .container {
       max-width: 500px;
        background: white;
        padding: 30px;
        display:block;
        margin: 0 auto;
       
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        text-align: center;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 10px;
        color: #333;
        text-align: center;
    }

    .subtitle {
        font-size: 18px;
        color: #777;
        margin-bottom: 30px;
    }

    .image-banner {
        width: 50%;
        height: 300px;
        background-size: cover;
        background-position: center;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 26px;
        margin: 20px 0 10px;
        color: #444;
        text-align: left;
    }

    .section-text {
        font-size: 17px;
        color: #555;
        text-align: left;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .gallery {
        display: flex;
        gap: 20px;
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .gallery img {
        width: 100px;
        height: 60px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.15);
    }

    