<style>
        .testimonials-section {
            background: #ffffff;
            padding: 80px 60px;
            position: relative;
        }
        
        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .testimonial-card {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 20px;
            position: relative;
            border-left: 5px solid #ffd700;
            transition: all 0.4s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left-width: 8px;
        }
        
        .quote-icon {
            font-size: 48px;
            color: #ffd700;
            line-height: 1;
            margin-bottom: 20px;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: #2d3748;
            margin-bottom: 25px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .book-title {
            font-style: italic;
            font-weight: 600;
            color: #000000;
        }
        
        .author-info {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 25px;
            border-top: 2px solid #e0e0e0;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 900;
            color: #000000;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .author-details {
            flex: 1;
        }
        
        .author-name {
            font-size: 16px;
            font-weight: 700;
            color: #0066cc;
            margin: 0 0 5px 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .author-title {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        @media (max-width: 1024px) {
            .testimonials-section {
                padding: 60px 40px;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .testimonials-section {
                padding: 50px 25px;
            }
            
            .testimonial-card {
                padding: 30px 25px;
            }
            
            .testimonial-text {
                font-size: 15px;
            }
        }
    </style>