:root {
            --primary: #2C5E92;
            --secondary: #6A9BD8;
            --accent: #F0B323;
            --neutral: #7D8CA3;
            --background: #f0f0f3;
            --card-bg: #f0f0f3;
        }
        
        body {
            background-color: var(--background);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }

        #ai_auto_banner {
            padding: 110px 0;
            background: #e7e7f7;
        }

        /* Neumorphism styles */
        .ai_auto_neu {
            border-radius: 20px;
            background: var(--card-bg);
            box-shadow:  10px 10px 21px #d9d9dc, 
                        -10px -10px 21px #ffffff;
            transition: all 0.3s ease;
            border: none;
        }
        
        .ai_auto_neu:hover {
            box-shadow:  5px 5px 10px #d9d9dc, 
                        -5px -5px 10px #ffffff;
            transform: translateY(-5px);
        }
        
        .ai_auto_neu_inset {
            border-radius: 15px;
            background: var(--card-bg);
            box-shadow: inset 5px 5px 10px #d9d9dc, 
                        inset -5px -5px 10px #ffffff;
        }
        
        /* Custom styles */
        .ai_auto_navbar {
            background: var(--card-bg);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 15px 0;
        }
        
        .ai_auto_navbar .nav-link {
            color: var(--primary);
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .ai_auto_navbar .nav-link:hover {
            background: rgba(44, 94, 146, 0.1);
        }
        
        .ai_auto_banner {
            background: linear-gradient(135deg, rgba(44, 94, 146, 0.9), rgba(106, 155, 216, 0.8)), url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            border-radius: 0 0 30px 30px;
            margin-bottom: 50px;
        }
        
        .ai_auto_search_input {
            border-radius: 50px;
            padding: 15px 25px;
            border: none;
            background: rgba(255,255,255,0.9);
        }
        
        .ai_auto_search_btn {
            border-radius: 50px;
            padding: 15px 30px;
            background: var(--accent);
            color: #333;
            font-weight: 600;
            border: none;
        }
        
        .ai_auto_section_title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .ai_auto_section_title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        /* Article card styles */
        .ai_auto_article_img {
            height: 200px;
            width: 100%;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
        }
        
        .ai_auto_label {
            display: inline-block;
            background: rgba(44, 94, 146, 0.1);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        /* Timeline style for last articles */
        .ai_auto_timeline {
            position: relative;
            padding-left: 30px;
        }
        
        .ai_auto_timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .ai_auto_timeline_date {
            position: absolute;
            left: -15px;
            top: 15px;
            background: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        /* Magazine layout for feature articles */
        .ai_auto_magazine_main {
            height: 100%;
        }
        
        .ai_auto_magazine_main_img {
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
        }
        
        .ai_auto_magazine_side {
            height: 100%;
        }
        
        .ai_auto_magazine_side_item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .ai_auto_magazine_side_img {
            width: 120px;
            height: 100px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        /* Image overlay for recommended articles */
        .ai_auto_overlay_card {
            position: relative;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .ai_auto_overlay_img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ai_auto_overlay_content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .ai_auto_overlay_card:hover .ai_auto_overlay_content {
            transform: translateY(0);
        }
        
        .ai_auto_overlay_card:hover .ai_auto_overlay_img {
            transform: scale(1.1);
        }
        
        /* Subscribe section */
        .ai_auto_subscribe {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 80px 0;
            color: white;
            border-radius: 30px;
            margin: 50px 0;
        }
        
        .ai_auto_subscribe_input {
            border-radius: 50px 0 0 50px;
            padding: 15px 25px;
            border: none;
        }
        
        .ai_auto_subscribe_btn {
            border-radius: 0 50px 50px 0;
            padding: 15px 30px;
            background: var(--accent);
            color: #333;
            font-weight: 600;
            border: none;
        }
        
        /* Footer */


        #ai_auto_footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 0;
            margin-top: 50px;
        }
        
        .ai_auto_footer_title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .ai_auto_footer_link {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        
        .ai_auto_footer_link:hover {
            color: white;
            padding-left: 5px;
        }
        
        .ai_auto_copyright {
            background: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .ai_auto_banner {
                padding: 50px 0;
            }
            
            .ai_auto_magazine_main_img {
                height: 250px;
                margin-bottom: 20px;
            }
        }