        .catalog {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #6c6965;
            padding: 30px;
            max-width: 1100px;
            margin: 30px auto;
            gap: 30px;
            font-family: Arial;
            flex-wrap: wrap;
        }

        .catalog-left {
            flex: 1;
            min-width: 250px;
        }

        .catalog h1 {
            color: #fff;
            margin-top: 0;
            margin-bottom:20px;
        }

        .buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            background-color: #8e8c89;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.2s;
        }

        .btn:hover {
            background-color: #2b2a29;
            color:#fff;
        }

        /* SVG boyutu */
        .btn svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        .catalog-img {
            flex: 1;
            max-width: 450px;
        }

        .catalog-img img {
            width: 100%;
            border-radius: 10px;
        }

        @media(max-width: 768px) {
            .catalog {
                flex-direction: column;
                text-align: center;
            }

            .catalog-img {
                max-width: 300px;
            }

            .buttons{
              margin-top:30px;
            }
        }