
        :root {
            --primary: #7BA7CC;
            --primary-deep: #5A8DB8;
            --primary-light: #A8CCE8;
            --primary-pale: #E8F2FA;
            --primary-ghost: #F4F9FD;
            --accent: #C4A882;
            --accent-light: #E8D8C4;
            --text: #2C3E50;
            --text-secondary: #607080;
            --text-muted: #8FA0B0;
            --border: #D8E6F0;
            --bg: #FAFCFE;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(90,141,184,0.06);
            --shadow-md: 0 8px 32px rgba(90,141,184,0.08);
            --shadow-lg: 0 16px 48px rgba(90,141,184,0.12);
            --radius: 16px;
            --radius-sm: 10px;
            --radius-lg: 24px;
            --max-w: 1200px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: 'DM Serif Display', serif;
            font-weight: 400;
            color: var(--text);
            line-height: 1.25;
        }

        a { color: var(--primary-deep); text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: var(--primary); }
        img { max-width: 100%; display: block; }

        /* ═══ ANNOUNCEMENT BAR ═══ */
        .announce-bar {
            background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
            color: white;
            text-align: center;
            padding: 0.65rem 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .announce-bar a { color: white; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

        /* ═══ HEADER ═══ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250,252,254,0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled { box-shadow: var(--shadow-sm); }

        .header-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0.9rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            text-decoration: none;
        }
        .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-light) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        .logo-text {
            font-family: 'DM Serif Display', serif;
            font-size: 1.25rem;
            color: var(--text);
        }
        .logo-text span { color: var(--primary-deep); }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        .nav-links a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--primary-deep); }

        .nav-right { display: flex; align-items: center; gap: 0.75rem; }

        .btn-ghost {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.55rem 1.1rem;
            border-radius: var(--radius-sm);
            transition: all 0.3s;
        }
        .btn-ghost:hover { background: var(--primary-pale); color: var(--primary-deep); }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
            color: white;
            padding: 0.6rem 1.4rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(90,141,184,0.25); color: white; }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: transparent;
            color: var(--primary-deep);
            padding: 0.6rem 1.4rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            border: 1.5px solid var(--primary-light);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-outline:hover { background: var(--primary-pale); border-color: var(--primary-deep); }

        /* Section helpers */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-deep);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }
        .section-header p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 550px;
            margin: 0 auto;
        }

        /* Page hero (subpages) */
        .page-hero {
            padding: 4rem 2rem 3rem;
            background: linear-gradient(160deg, var(--white) 0%, var(--primary-ghost) 40%, var(--primary-pale) 100%);
            text-align: center;
        }
        .page-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 0.75rem;
        }
        .page-hero p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, var(--primary-light) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
        }
        .cta-section p {
            color: rgba(255,255,255,0.9);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }
        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: white;
            color: var(--primary-deep);
            padding: 0.75rem 1.8rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: var(--primary-deep); }

        /* ═══ FOOTER ═══ */
        .site-footer {
            background: #2C3E50;
            color: rgba(255,255,255,0.7);
            padding: 4rem 2rem 2rem;
        }
        .footer-inner {
            max-width: var(--max-w);
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand .logo-text { color: white; }
        .footer-brand .logo-text span { color: var(--primary-light); }
        .footer-desc {
            font-size: 0.88rem;
            line-height: 1.7;
            margin-top: 1rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-col h4 {
            color: white;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.5rem; }
        .footer-col a {
            color: rgba(255,255,255,0.5);
            font-size: 0.88rem;
            transition: color 0.3s;
        }
        .footer-col a:hover { color: white; }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.4);
        }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .announce-bar { font-size: 0.78rem; padding: 0.5rem 1rem; }
            .header-inner { padding: 0.8rem 1rem; }
            .nav-links { display: none; }
            .page-hero h1 { font-size: 2rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .section-header h2 { font-size: 2rem; }
            .cta-section h2 { font-size: 2rem; }
        }

        /* ═══ BLOG PAGE SPECIFIC ═══ */
        .blog-container {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* Featured Post */
        .featured-post {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 4rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }
        .featured-post:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .featured-post-border {
            height: 6px;
            background: linear-gradient(90deg, var(--primary-deep) 0%, var(--primary) 100%);
        }

        .featured-post-content {
            padding: 2.5rem;
        }

        .featured-post-category {
            display: inline-block;
            background: var(--primary-pale);
            color: var(--primary-deep);
            padding: 0.4rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .featured-post h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .featured-post-excerpt {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .featured-post-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }

        .post-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .author-details h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            margin-bottom: 0.2rem;
        }

        .read-time {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .blog-post-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .blog-post-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
            border-color: var(--primary-light);
        }

        .blog-post-card-category {
            display: inline-block;
            background: var(--primary-pale);
            color: var(--primary-deep);
            padding: 0.35rem 0.85rem;
            border-radius: var(--radius-sm);
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 1rem;
            width: fit-content;
        }

        .blog-post-card h3 {
            font-size: 1.35rem;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .blog-post-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .blog-post-date {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .blog-post-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border);
        }

        .blog-post-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .blog-read-more {
            color: var(--primary-deep);
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

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

        /* Newsletter Section */
        .newsletter-section {
            background: var(--primary-pale);
            border-radius: var(--radius-lg);
            padding: 3rem;
            text-align: center;
            margin-bottom: 4rem;
        }

        .newsletter-section h2 {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .newsletter-section p {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.95rem;
            color: var(--text);
            background: var(--white);
            transition: border-color 0.3s;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .newsletter-form input::placeholder {
            color: var(--text-muted);
        }

        /* Responsive Blog Grid */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .blog-container {
                padding: 2rem 1rem;
            }

            .featured-post-content {
                padding: 1.5rem;
            }

            .featured-post h2 {
                font-size: 1.75rem;
            }

            .featured-post-excerpt {
                font-size: 0.95rem;
            }

            .blog-post-card {
                padding: 1.5rem;
            }

            .blog-post-card h3 {
                font-size: 1.1rem;
            }

            .newsletter-section {
                padding: 2rem 1.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .btn-primary {
                width: 100%;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            .page-hero p {
                font-size: 1rem;
            }

            .cta-section h2 {
                font-size: 1.75rem;
            }

            .cta-section p {
                font-size: 0.95rem;
            }
        }

