  .container {
            max-width: 95%;
           
        }

        h1 {
            text-align: center;
            color: #0f766e;
        }

        h2 {
            color: #115e59;
            margin-top: 30px;
        }

        .intro {
            font-size: 16px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 25px;
        }

        .conversation {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .message {
            display: flex;
            gap: 15px;
        }

        .left {
            justify-content: flex-start;
        }

        .right {
            justify-content: flex-end;
        }

        .message img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
        }

        .bubble {
            padding: 12px 18px;
            border-radius: 20px;
            max-width: 70%;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .male {
            background: #ccfbf1;
            border-top-left-radius: 0;
        }

        .female {
            background: #fef9c3;
            border-top-right-radius: 0;
        }

        .bengali {
            font-size: 14px;
            color: #555;
            margin-top: 6px;
            font-style: italic;
        }

        .play-btn {
            margin-top: 8px;
            background: #0f766e;
            color: #fff;
            border: none;
            padding: 6px 12px;
            border-radius: 12px;
            cursor: pointer;
        }

        .play-btn:hover {
            background: #115e59;
        }

   