:root {
            --primary-color: #4CAF50;
            --secondary-color: #8BC34A;
            --accent-color: #FFC107;
            --dark-green: #388E3C;
            --light-bg: #F8F9FA;
            --text-dark: #212529;
            --text-light: #6C757D;
            --nature-light: #e8f5e9;
            --nature-dark: #1b5e20;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234caf5050' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        /* Navigation Styles */
        #ai_auto_navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1030;
        }
        
        .ai_auto_nav-logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .ai_auto_nav-logo i {
            margin-right: 8px;
            color: var(--dark-green);
        }
        
        .ai_auto_nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            transition: all 0.3s;
            margin: 0 10px;
            position: relative;
        }
        
        .ai_auto_nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .ai_auto_nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 3px;
        }
        
        .ai_auto_search-form {
            position: relative;
        }
        
        .ai_auto_search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: var(--text-light);
        }
        
        /* Banner Styles */
        #ai_auto_banner {
            background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(56, 142, 60, 0.8)), url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .ai_auto_banner-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .ai_auto_banner-desc {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .ai_auto_banner-search {
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Article Section Styles */
        #ai_auto_home-artice {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .ai_auto_section-title {
            position: relative;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 40px;
            text-align: center;
        }
        
        .ai_auto_section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        /* Featured Articles - Magazine Style */
        #ai_auto_feature-article {
            margin-bottom: 70px;
        }
        
        .ai_auto_magazine-card {
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            background: white;
        }
        
        .ai_auto_magazine-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .ai_auto_main-article {
            height: 100%;
            position: relative;
        }
        
        .ai_auto_main-article-img {
            height: 100%;
            object-fit: cover;
        }
        
        .ai_auto_main-article-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 30px;
            color: white;
        }
        
        .ai_auto_article-badge {
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        
        .ai_auto_side-article {
            margin-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 20px;
        }
        
        .ai_auto_side-article:last-child {
            margin-bottom: 0;
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .ai_auto_side-img {
            width: 120px;
            height: 90px;
            object-fit: cover;
            border-radius: 5px;
        }
        
        /* Latest Articles - Timeline Style */
        #ai_auto_last-article {
            margin-bottom: 70px;
        }
        
        .ai_auto_timeline-card {
            border-left: 3px solid var(--primary-color);
            border-radius: 0 8px 8px 0;
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .ai_auto_timeline-card:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .ai_auto_timeline-header {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 0 5px 0 0;
            font-weight: 600;
        }
        
        .ai_auto_timeline-content {
            padding: 20px;
        }
        
        .ai_auto_timeline-img {
            width: 200px;
            height: 150px;
            object-fit: cover;
            border-radius: 5px;
        }
        
        /* Recommended Articles - Image Overlay Style */
        #ai_auto_recommend-article {
            margin-bottom: 50px;
        }
        
        .ai_auto_overlay-card {
            height: 300px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .ai_auto_overlay-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .ai_auto_overlay-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            transform: translateY(100%);
            transition: all 0.5s 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.05);
        }
        
        .ai_auto_overlay-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        /* Subscribe Section */
        #ai_auto_subscribe {
            padding: 80px 0;
            background: linear-gradient(rgba(139, 195, 74, 0.9), rgba(76, 175, 80, 0.9)), url('https://images.unsplash.com/photo-1491147334573-44cbb4602074?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2067&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .ai_auto_subscribe-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .ai_auto_subscribe-desc {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .ai_auto_subscribe-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Footer Styles */
        #ai_auto_footer {
            background-color: var(--dark-green);
            color: rgba(255, 255, 255, 0.8);
            padding-top: 60px;
        }
        
        .ai_auto_footer-title {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .ai_auto_footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .ai_auto_footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        
        .ai_auto_footer-link:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .ai_auto_footer-desc {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .ai_auto_footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .ai_auto_social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .ai_auto_social-icon:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .ai_auto_copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
            margin-top: 60px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .ai_auto_timeline-img {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .ai_auto_footer-col {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .ai_auto_banner-title {
                font-size: 2.2rem;
            }
            
            .ai_auto_subscribe-title {
                font-size: 2rem;
            }
        }