         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .container_s {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
        }

        .subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .carousel-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 40px;
        }

        .owl-carousel .item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .owl-carousel .item:hover {
            transform: translateY(-5px);
        }

        .slide-image {
            height: 200px;
            overflow: hidden;
        }

        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .item:hover .slide-image img {
            transform: scale(1.05);
        }

        .slide-content {
            text-align: center;
            padding: 20px;
        }

        .slide-content h3 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .slide-content p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .slide-content .btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .slide-content .btn:hover {
            background: #2980b9;
        }

        .controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .controls button {
            background: #3498db;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .controls button:hover {
            background: #2980b9;
        }

        .custom-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .custom-dots .owl-dot {
            width: 12px;
            height: 12px;
            background: #bdc3c7;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .custom-dots .owl-dot.active {
            background: #3498db;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .carousel-container {
                padding: 20px;
            }

            .slide-image {
                height: 200px;
            }
        }