         .ss{
                font-family: Arial, sans-serif;
                margin: 0;
                padding: 0;
                background-color: #f9f9f9;
            }
            .cotainer {
                display: flex;
                flex-direction: row-reverse;
                align-items: center;
                padding: 40px;
                background-color: #e8eef3;
            }
            .image-cotainer {
                flex: 1;
                padding: 20px;
                text-align: center;
                position: relative;
            }
            .image-cotainer img {
                max-width: 100%;
                height: auto;
                border-radius: 10px;
                transition: transform 0.3s, opacity 0.3s;
            }
            .seondary {
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0;
                transform: scale(0.9);
            }
            .contnt {
                flex: 1;
                padding: 20px;
            }
            p {
                color: #555;
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 20px;
            }
            .liks a {
                display: inline-block;
                margin: 5px 10px 5px 0;
                color: #a838c1;
                text-decoration: none;
                font-weight: bold;
                border-bottom: 1px solid #388e3c;
            }
            .buttos {
                margin-top: 20px;
            }
            .buttos button {
                border: 2px solid #7bc7e2f5;
                padding: 10px 20px;
                border-radius: 20px;
                font-size: 1rem;
                cursor: pointer;
                transition: 0.3s;
            }
            .buttos button:first-child {
                background-color: #fff;
                color: #e67c7cf0;
                margin-right: 10px;
            }
            .buttos button:last-child {
                background-color: #e67c7cf0;
                color: #fff;
            }
    
            @media (max-width: 768px) {
                .cotainer {
                    flex-direction: column;
                    padding: 20px;
                }
                .image-cotainer, .contnt {
                    width: 100%;
                    text-align: center;
                }
                .buttos button {
                    width: 100%;
                    margin: 5px 0;
                }
            }
