:root {
    --primary-color: #0066CC; /* Tech Blue for Search/Trust */
    --secondary-color: #F0F5FA; /* Very Light Blue Background */
    --accent-color: #00A3E0; /* Cyan Blue for highlights */
    --text-dark: #222222;
    --text-light: #666666;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 102, 204, 0.08);
    --card-border: 1px solid #E1E8ED;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.site-nav ul {
    display: flex;
    gap: 25px;
}

.site-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.site-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #003366);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.search-mockup {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 10px 20px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.search-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.search-btn {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    cursor: default;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.section-title h2 {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
}

.more {
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
}

.more:hover {
    color: var(--primary-color);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: var(--card-border);
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.img-wrapper {
    width: 100%;
    height: 140px;
    background-color: #eee;
}

.gradient-box {
    width: 100%;
    height: 100%;
}

.card-text {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.card-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Article Section */
.article-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.seo-article {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    border: var(--card-border);
}

.seo-article h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-article p {
    font-size: 15px;
    color: var(--text-light);
    text-indent: 2em;
    text-align: justify;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-content p {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    margin: 0 15px;
    font-size: 14px;
    color: #888;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .site-nav {
        display: none; 
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .img-wrapper {
        height: 120px;
    }
}
