/* Custom styles for better grid appearance */
        .story-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .icon-gold {
            color: #d4a853;
        }

        .text-gold {
            color: #d4a853;
        }

        /* CSS Grid layout for perfect image arrangement */
        .image-grid-container {
            padding: 20px;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 200px);
            gap: 15px;
            width: 100%;
        }

        .grid-item {
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .grid-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .grid-item:hover .grid-image {
            transform: scale(1.1);
        }

        /* Responsive grid adjustments */
        @media (max-width: 768px) {
            .image-grid {
                grid-template-rows: repeat(2, 150px);
                gap: 10px;
            }
            
            .image-grid-container {
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .image-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 180px);
            }
        }

        /* Feature list styling */
        .feature-item {
            background: rgba(255, 255, 255, 0.8);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            transition: transform 0.2s ease;
        }

        .feature-item:hover {
            transform: translateX(5px);
            background: rgba(255, 255, 255, 0.95);
        }