        
        .dnt4-hero-section {
            background: linear-gradient(135deg, #ffd200 0%, #f7a600 100%);
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .dnt4-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .dnt4-flex-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        
        .dnt4-image-container {
            flex: 1;
            max-width: 550px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .dnt4-hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            border: solid 3px #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease-in-out;
            
        }
        
        .dnt4-content {
            flex: 1;
            padding: 20px;
        }
        
        .dnt4-title {
            text-align: left;
            font-size: 23px;
            line-height: 33px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
            padding: 0;
        }
        
        .dnt4-description {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
        }
        
        .dnt4-highlight {
            font-weight: 600;
            color: #222;
        }
        
        .dnt4-button {
            display: inline-block;
            background-color: #333;
            color: white;
            font-size: 16px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            margin-top: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .dnt4-button:hover {
            background-color: #444;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .dnt4-flex-row {
                flex-direction: column;
            }
            
            .dnt4-image-container {
                max-width: 100%;
                margin-bottom: 20px;
            }
            
            .dnt4-content {
                padding: 10px 0;
            }
        }
        
        @media (max-width: 768px) {
            .dnt4-title {
                font-size: 26px;
            }
            
            .dnt4-description {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .dnt4-button {
                display: block;
                text-align: center;
                width: 100%;
            }
        }
