﻿  .insights-section {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            margin-bottom: 65px;
        }

        .section-header {
            background:#bc892b;
            padding: 40px;
            text-align: center;
        }

        .section-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .section-header h2 {
            font-weight: 500;
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
        }

        .content-container {
            display: flex;
            flex-wrap: wrap;
        }

        .text-content {
            flex: 1;
            padding: 50px;
            min-width: 300px;
        }

        .intro-text {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 40px;
            font-weight: 500;
            line-height: 1.8;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .benefits-list li {
            padding: 15px 0;
            padding-left: 50px;
            position: relative;
            font-size: 1.1rem;
            color: #34495e;
            border-bottom: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }

        .benefits-list li:hover {
            background-color: #f9f9f9;
            transform: translateX(5px);
        }

        .benefits-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: #bc892b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: "Font Awesome 6 Pro";
            font-weight: 900;
            font-size: 14px;
        }

        .benefits-list li:nth-child(1):before { content: "\f201"; }
        .benefits-list li:nth-child(2):before { content: "\f0b1"; }
        .benefits-list li:nth-child(3):before { content: "\f012"; }
        .benefits-list li:nth-child(4):before { content: "\f0a1"; }
        .benefits-list li:nth-child(5):before { content: "\f118"; }

        .cta-button {
            display: inline-block;
            background: #bc892b;
            color: white;
            padding: 16px 45px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(26, 41, 128, 0.2);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(26, 41, 128, 0.3);
        }

        .cta-button:active {
            transform: translateY(1px);
        }

        .image-container {
            flex: 1;
            min-width: 300px;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center center;
            background-size: cover;
            position: relative;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #bc892b;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .image-container:hover .image-overlay {
            opacity: 1;
        }

        .image-overlay p {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            max-width: 500px;
            line-height: 1.4;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        @media (max-width: 768px) {
            .content-container {
                flex-direction: column;
            }
            
            .section-header h1 {
                font-size: 2.2rem;
            }
            
            .section-header h2 {
                font-size: 1.4rem;
            }
            
            .text-content {
                padding: 30px;
            }
        }
        
        
        
        
        
        
                .section-container {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            margin: 30px;
        }

        .section-header {
            background: #bc892b;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .section-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 15px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.2);
            position: relative;
        }

        .section-subtitle {
            font-weight: 400;
            font-size: 1.6rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            padding: 70px 50px;
        }

        .feature-card {
            display: flex;
            background: #ffffff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(38, 208, 206, 0.15);
        }

        .feature-icon {
            background: #bc892b;
            width: 120px;
            min-width: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
        }

        .feature-content {
            padding: 35px 40px;
        }

        .feature-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1a2980;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .feature-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 4px;
            background: #bc892b;
            border-radius: 2px;
        }

        .feature-description {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
        }

        .pattern-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png');
            opacity: 0.03;
            z-index: 0;
        }

        @media (max-width: 1100px) {
            .features-grid {
                grid-template-columns: 1fr;
                padding: 50px 30px;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .section-subtitle {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .feature-card {
                flex-direction: column;
            }
            
            .feature-icon {
                width: 100%;
                height: 100px;
                min-width: 100%;
            }
            
            .section-header {
                padding: 40px 20px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }