
        /* Top İmage */

        .top-image {
            margin-top: 90px;
        }

        .top-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            max-height: 500px;
        }
        @media (max-width: 1000px) {
            .top-image {
                margin-top: 60px;
            }
        }

        /* About Card */

        .about-card {
            display: flex;
            flex-direction: row;
            max-width: 1200px;
            margin: 2rem auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            overflow: hidden;
            height: 325px;
            width: 92%;
        }
        .image-container {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            width: 100%;
            height: 100%;
            padding: 15px;
            cursor: pointer;
            border-radius: 15px;
            transition: 0.5s ease-in-out;
        }

        .image-container img:hover {
            transform: scale(1.02);

        }

        .text-container {
            flex: 1;
            padding: 2rem;
        }
        .text-container a {
            font-size: 17px;
            font-weight: 600;
        }
        .about-title {
            color: #e50040;;
            margin-bottom: 1rem;
            font-size: 2rem;
            text-align: center;
        }

        .about-text {
            color: black;
            line-height: 1.4;
            font-size: 17px;
            margin-top: 35px;
        }

        .more-button {
            background: black;
            color: white;
            padding: 0.8rem 1.6rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .more-button-general {
            transition: 0.3s ease;
            margin-top: 40px;
            margin-left: auto;
            margin-right: auto;
            display: table;
        }
        .more-button-general:hover {
            transform: translateY(-3px);
        }

        /* Mobile Layout */

        @media (max-width: 980px) {
            .about-card {
                flex-direction: column;
                margin: 1rem;
                height: 715px;
                width: 92%;
                border-radius: 0 0 15px 15px;
            }
            .image-container {
                width: 100%;
                height: 350px;
            }
            .about-image {
                border-radius: 15px 15px 0 0;
            }
            .text-container {
                padding: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .about-title {
                font-size: 1.5rem;
                text-align: center;
            }
        }

        /* Slider */

        /*.slider-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 365px;
            margin: 50px auto;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            box-sizing: border-box;
        }

        .slider-button {
            position: absolute;
            top: 50%;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            transform: translateY(-50%);
            background-color: rgb(236, 196, 18);
            color: white;
            border: none;
            font-size: 30px;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }

        .slider-button.prev {
            left: 0;
        }

        .slider-button.next {
            right: 0;
        }

        .slide-box {
            width: 300px;
            height: 500px;
            background-color: #007bff;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            margin: auto;
        }*/

        /* Products Card */

        .product-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            padding: 20px;
            max-width: 1200px;
            width: 100%;
            flex-wrap: wrap;
        }

        .product-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            text-align: center;
            transition: transform 0.3s ease;
            width: 100%;
            max-width: 500px;
            min-height: 500px;
        }

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            padding: 15px;
        }

        .product-card h3 {
            padding: 20px;
            font-size: 23px;
            color: #e50040;;
        }

        .product-card ul li {
            font-size: 17px;
            padding: 3px 10px ;
            text-align: justify;
            color: black;
        }

        .product-card p {
            padding: 0 15px 15px 15px;
            font-size: 16px;
            color: black;
        }
        .product-card .arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            width: 40px;
            color: #000;
            border: 2px solid #000;
            border-radius: 50%;
            margin-top: 20px;
            margin-bottom: 20px;
            margin-left: 20px;
            transition: 0.2s ease;
        }
        .product-card:hover .arrow  {
            background: #000;
            color: #fff; 
        }
        .product-card:hover  {
            transform: translateY(-5px);
        }

        /* Slider */        
        .wrapper {
            max-width: 800px;
            width: 750px;
            position: relative;
            margin-bottom: 80px;
            margin-top: 40px;
        }
        .wrapper span {
            height: 50px;
            width: 50px;
            background: #f1d63e;
            text-align: center;
            line-height: 50px;
            border-radius: 50%;
            cursor: pointer;
            position: absolute;
            top: 50%;
            font-size: 1.25 rem;
            transform: translateY(-50%);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
            transition: transform 0.15s linear;
        }
        .wrapper span:active {
            transform: translateY(-50%) scale(0.85);
        }
        .wrapper span:first-child {
            left: -21px;
        }
        .wrapper span:last-child {
            right: -15px;
        }
        .wrapper .carousel {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: calc((100% / 3) - 12px);
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 16px;
            border-radius: 7px;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }
        .carousel::-webkit-scrollbar {
            display: none;
        }
        .carousel :where(.card, .img) {
            display: flex;
        }
        .carousel.dragging {
            scroll-snap-type: none;
            scroll-behavior: auto;
        }
        .carousel.no-transition {
            scroll-behavior: auto;
        }
        .carousel.dragging .card {
            cursor: grab;
            user-select: none;
        }
        .carousel .card {
            scroll-snap-align: start;
            height: 420px;
            list-style: none;
            background: #c0c0c0;
            border-radius: 7px;
            cursor: pointer;
            width: 98%;
            padding-bottom: 15px;
            flex-direction: column;
        }
        .card a {
            color: black;
        }
        
        .card .img img {
            height: 312.5px;
            width: 100%;
            border-radius: 7px 7px 0 0;
            object-fit: cover;
        }
        .carousel .card p {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 20px 0 5px;
            text-align: center;
        }
        @media (max-width: 900px) {
            .wrapper .carousel{
                grid-auto-columns: calc((100% / 2) - 9px);
            }
        }
        @media (max-width: 800px) {
            .wrapper .carousel{
                grid-auto-columns: 100%;
            }
            .wrapper {
                width: 80%;
            }
        }

