        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            
            background: #f5f5f5;
            padding: 20px;
        }

        .slideshow-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .header-container {
            background: #e5e7eb;
            border-radius: 15px;
            padding: 50px 30px;
            margin: 20px;
            text-align: center;
        }

        .header-icon-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .success-icon {
            width: 96px;
            height: 96px;
            background: url('images/1e070dbc-30ec-4d2b-8568-c8009529ab7c_1750355958046.png') no-repeat center;
            background-size: contain;
        }

        .header-badge {
            color: #2A6E3F;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .main-title {
            font-size: 2.5rem;
            color: #2A6E3F;
            font-weight: 400;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .main-description {
            font-size: 1.25rem;
            color: #4b5563;
            line-height: 1.6;
            max-width: 4xl;
            margin: 0 auto;
        }

        .slide-container {
            margin-top: 30px;
            position: relative;
        }

        .slide-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 1px solid #e5e7eb;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
        }

        .slide-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .slide-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #2A6E3F, #D4A017);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .slide-card:hover::after {
            transform: scaleX(1);
        }

        .slide-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .slide-image-section {
            position: relative;
            height: 400px;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-image.contain {
            object-fit: contain;
            background: white;
        }

        .slide-image.chocolate {
            object-fit: contain;
            background: white;
            max-width: 85%;
            max-height: 85%;
            margin: auto;
        }

        .success-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #2A6E3F;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            z-index: 10;
        }

        .slide-content {
            padding: 24px 32px;
        }

        .content-header {
            margin-bottom: 24px;
        }

        .slide-title {
            font-size: 1.5rem;
            color: #D4A017;
            font-weight: 400;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .client-info {
            display: flex;
            align-items: center;
            color: #2A6E3F;
            margin-bottom: 16px;
        }

        .client-icon {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            fill: currentColor;
        }

        .client-name {
            font-weight: 600;
        }

        .testimonial-section {
            background: linear-gradient(135deg, rgba(42, 110, 63, 0.05) 0%, rgba(212, 160, 23, 0.05) 100%);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid rgba(42, 110, 63, 0.1);
            margin-bottom: 24px;
        }

        .testimonial-content {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .quote-icon {
            width: 32px;
            height: 32px;
            background: #2A6E3F;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
        }

        .testimonial-text {
            color: #374151;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .testimonial-author {
            color: #2A6E3F;
            font-weight: bold;
            font-size: 0.875rem;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .starting-point {
            background: #f9fafb;
            border-radius: 8px;
            padding: 16px;
        }

        .metric-label {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 4px;
        }

        .metric-value {
            font-size: 1.125rem;
            font-weight: bold;
            color: #2A6E3F;
        }

        .metric-description {
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .key-results h4 {
            font-size: 1.125rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .results-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .result-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .result-check {
            width: 24px;
            height: 24px;
            background: #2A6E3F;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .result-text {
            color: #374151;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .navigation-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 32px;
        }

        .nav-button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #2A6E3F;
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .nav-button:hover {
            background: #D4A017;
            transform: scale(1.1);
        }

        .nav-button:active {
            background: #D4A017;
        }

        .nav-button:focus {
            background: #D4A017;
            outline: none;
        }

        .dots-indicator {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #2A6E3F;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #D4A017;
        }

        .dot:hover {
            background: #D4A017;
        }

        .slide {
            display: none;
        }

        .slide.active {
            display: block;
        }

        @media (max-width: 1024px) {
            .slide-layout {
                grid-template-columns: 1fr;
            }
            
            .slide-image-section {
                height: 300px;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            
            .slide-content {
                padding: 16px 20px;
            }
            
            .slide-title {
                font-size: 1.25rem;
            }
        }
