
        :root {
            --pure-white: #FFFFFF;
            --soft-white: #F8FAFC;
            
            /* New primary blues - sophisticated depth */
            --crestwood-blue: #2C4059;        /* Dark denim as primary */
            --crestwood-blue-light: #4F6D7A;   /* Slate blue-gray as lighter */
            --crestwood-blue-dark: #0C3348;    /* Teal-blue for depth */
            
            /* New accent colors - subtle and professional */
            --crestwood-gold: #494b90;         /* Pop blue for subtle pop */
            --crestwood-gold-light: #8B6E7C;    /* Mauve for sophisticated softness */
            --crestwood-gold-dark: #383BBB;     /* Seafoam green for fresh contrast */
            
            /* Light highlights */
            --border-gold: #C9D4DF;             /* Soft cloud blue for borders */
            --text-dark: #1E293B;
            --text-gray: #475569;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            background-color: var(--pure-white);
            line-height: 1.7;
        }
        
        .font-heading {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        /* Gradient effects - updated with new colors */
        .gold-gradient {
            background: linear-gradient(135deg, 
                rgba(196, 93, 93, 0.1) 0%, 
                rgba(139, 110, 124, 0.05) 100%);
        }
        
        .gold-gradient-strong {
            background: linear-gradient(135deg, 
                var(--crestwood-gold) 0%, 
                var(--crestwood-gold-dark) 100%);
        }
        
        .blue-gradient {
            background: linear-gradient(135deg, 
                var(--crestwood-blue) 0%, 
                var(--crestwood-blue-light) 100%);
        }
        
        .blue-gradient-soft {
            background: linear-gradient(135deg, 
                rgba(44, 64, 89, 0.05) 0%, 
                rgba(79, 109, 122, 0.02) 100%);
        }
        
        /* Premium card styles - updated border and hover */
        .luxury-card {
            background: var(--pure-white);
            border: 1px solid var(--border-gold);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(44, 64, 89, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .luxury-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--crestwood-gold) 0%, 
                var(--crestwood-gold-light) 100%);
        }
        
        .luxury-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(44, 64, 89, 0.15);
            border-color: var(--crestwood-gold-light);
        }
        
        /* Button styles - updated with new colors */
        .btn-primary {
            background: var(--crestwood-blue);
            color: white;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid var(--crestwood-blue);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            background: var(--crestwood-blue-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(44, 64, 89, 0.2);
        }
        
        .btn-gold {
            background: var(--crestwood-gold);
            color: white;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid var(--crestwood-gold);
        }
        
        .btn-gold:hover {
            background: var(--crestwood-gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(94, 124, 107, 0.2);
            color: white;
        }
        
        .btn-outline-primary {
            background: transparent;
            color: var(--crestwood-blue);
            border: 2px solid var(--crestwood-blue);
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background: var(--crestwood-blue);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Section styling */
        .section-luxury {
            padding-top: 6rem;
            padding-bottom: 6rem;
        }
        
        /* Premium icon - updated colors */
        .premium-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, 
                rgba(44, 64, 89, 0.05) 0%, 
                rgba(79, 109, 122, 0.02) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--crestwood-gold);
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-gold);
        }
        
        /* Decorative pattern - updated with main blue */
        .gold-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 20H50L38 30L43 45L30 36L17 45L22 30L10 20H25L30 5Z' fill='%232C4059' fill-opacity='0.03'/%3E%3C/svg%3E");
        }
        
        /* Hero section - updated accent colors */
        .hero-luxury {
            background: linear-gradient(135deg, var(--pure-white) 0%, var(--soft-white) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-luxury::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(196, 93, 93, 0.03) 0%, 
                rgba(139, 110, 124, 0.01) 100%);
            z-index: 0;
        }
        
        /* Gold accent - now using dusty rose */
        .gold-accent {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, 
                rgba(196, 93, 93, 0.08) 0%, 
                rgba(196, 93, 93, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .blue-accent {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, 
                rgba(44, 64, 89, 0.05) 0%, 
                rgba(44, 64, 89, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        /* Pricing card badge - updated */
        .premium-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--crestwood-gold);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(196, 93, 93, 0.3);
        }
        
        /* Text gradient - updated with new colors */
        .crestwood-gradient-text {
            background: linear-gradient(135deg, 
                var(--crestwood-blue) 0%, 
                var(--crestwood-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Shimmer effect - updated */
        .shimmer-effect {
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(196, 93, 93, 0.08) 50%, 
                transparent 100%);
            background-size: 1000px 100%;
            animation: shimmer 3s infinite linear;
        }
        
        /* Scroll progress - updated gradient */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--crestwood-blue) 0%, 
                var(--crestwood-gold) 50%,
                var(--crestwood-gold-dark) 100%);
            z-index: 100;
            transition: width 0.3s ease;
        }

        /* Background color classes - values updated but class names unchanged */
        .bg-pure-white { background-color: var(--pure-white); }
        .bg-soft-white { background-color: var(--soft-white); }
        .bg-crestwood-blue { background-color: var(--crestwood-blue); }
        .bg-crestwood-blue-light { background-color: var(--crestwood-blue-light); }
        .bg-crestwood-blue-dark { background-color: var(--crestwood-blue-dark); }
        .bg-crestwood-gold { background-color: var(--crestwood-gold); }
        .bg-crestwood-gold-light { background-color: var(--crestwood-gold-light); }
        .bg-crestwood-gold-dark { background-color: var(--crestwood-gold-dark); }

        /* Text color classes - values updated */
        .text-pure-white { color: var(--pure-white); }
        .text-crestwood-blue { color: var(--crestwood-blue); }
        .text-crestwood-blue-light { color: var(--crestwood-blue-light); }
        .text-crestwood-blue-dark { color: var(--crestwood-blue-dark); }
        .text-crestwood-gold { color: var(--crestwood-gold); }
        .text-crestwood-gold-light { color: var(--crestwood-gold-light); }
        .text-crestwood-gold-dark { color: var(--crestwood-gold-dark); }
        .text-dark { color: var(--text-dark); }
        .text-gray-custom { color: var(--text-gray); }

        /* Border color classes - updated */
        .border-gold { border-color: var(--border-gold); }
        .border-crestwood-blue { border-color: var(--crestwood-blue); }
        
        .bg-crestwood-blue\/10 { background-color: rgba(44, 64, 89, 0.1); }

        
        
        .article-page {
        max-width: 1200px;
        margin: auto;
        padding: 60px 20px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        }

        .article-content {
        max-width: 800px;
        margin: auto;
        background: var(--pure-white);
        padding: 40px;
        border-radius: 16px;
        border: 1px solid var(--border-gold);
        box-shadow: 0 8px 32px rgba(44, 64, 89, 0.06);
        }

        .article-content img {
        width: 100%;
        border-radius: 12px;
        margin: 20px 0;
        border: 1px solid var(--border-gold);
        }

        .article-date {
        font-size: 14px;
        color: var(--text-gray);
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-gold);
        font-style: italic;
        }

        .article-content h1 {
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: 20px;
        }

        .article-content h2 {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 20px;
        }

        .article-content h3 {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
        }

        .article-content p {
        margin-bottom: 1.5em;
        }

        .article-content ul, 
        .article-content ol {
        margin: 20px 0;
        padding-left: 30px;
        color: var(--text-gray);
        line-height: 1.8;
        }

        .article-content li {
        margin: 10px 0;
        }

        .article-content blockquote {
        border-left: 3px solid var(--crestwood-blue);
        margin: 30px 0;
        padding-left: 30px;
        font-style: italic;
        color: var(--crestwood-blue);
        }

        .article-content code {
        background: #f4f4f4;
        padding: 2px 6px;
        border-radius: 4px;
        font-family: monospace;
        font-size: 14px;
        }

        .article-content pre {
        background: #f4f4f4;
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        margin: 20px 0;
        }

        .article-meta {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-gold);
        font-size: 14px;
        color: var(--text-gray);
        }

        .article-author {
        margin-left: 10px;
        font-style: italic;
        }

        /* Blog page */
        .blog-page {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        }

        .blog-page h1 {
        font-family: 'Cormorant Garamond', serif;
        color: var(--crestwood-blue);
        margin-bottom: 40px;
        }

        .article-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
        }

        .post-preview {
        padding: 30px;
        background: var(--pure-white);
        border-radius: 16px;
        border: 1px solid var(--border-gold);
        }

        .post-preview h2 {
        margin-top: 0;
        font-family: 'Cormorant Garamond', serif;
        color: var(--crestwood-blue);
        }

        .post-preview h2 a {
        text-decoration: none;
        color: inherit;
        }

        .post-preview h2 a:hover {
        text-decoration: underline;
        }

        .post-meta {
        font-size: 14px;
        color: var(--text-gray);
        margin-bottom: 15px;
        }

        .read-more {
        display: inline-block;
        margin-top: 10px;
        color: var(--crestwood-blue);
        text-decoration: none;
        font-weight: 500;
        }

        .read-more:hover {
        text-decoration: underline;
        }

        .browse-link {
        display: inline-block;
        color: var(--crestwood-blue);
        text-decoration: none;
        font-weight: 500;
        }

        .browse-link:hover {
        text-decoration: underline;
        }

        /* Article layout - two columns */
        .article-layout {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 50px;
        }

        .article-main {
        min-width: 0;
        }

        .article-sidebar {
        position: sticky;
        top: 20px;
        align-self: start;
        }

        /* Sidebar widgets */
        .sidebar-widget {
        background: var(--pure-white);
        padding: 25px;
        border-radius: 16px;
        border: 1px solid var(--border-gold);
        margin-bottom: 30px;
        }

        .sidebar-widget:last-child {
        margin-bottom: 0;
        }

        .sidebar-widget h3 {
        font-family: 'Cormorant Garamond', serif;
        color: var(--crestwood-blue);
        margin-top: 0;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--border-gold);
        font-size: 1.3rem;
        }

        /* Recent posts list */
        .recent-posts {
        list-style: none;
        padding: 0;
        margin: 0;
        }

        .recent-posts li {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        }

        .recent-posts li:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
        }

        .recent-posts a {
        text-decoration: none;
        color: var(--crestwood-blue);
        display: block;
        font-weight: 500;
        margin-bottom: 5px;
        font-size: 15px;
        }

        .recent-posts a:hover {
        text-decoration: underline;
        }

        .recent-posts small {
        font-size: 12px;
        color: var(--text-gray);
        }

        /* Archive styles */
        .archive-year {
        margin-bottom: 15px;
        }

        .archive-year summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--crestwood-blue);
        font-size: 1.1rem;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-gold);
        }

        .archive-year summary:hover {
        opacity: 0.8;
        }

        .archive-year ul {
        padding-left: 20px;
        margin-top: 10px;
        }

        .archive-month {
        margin-bottom: 12px;
        }

        .archive-month strong {
        color: var(--text-gray);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        }

        .archive-posts {
        list-style: none;
        padding-left: 15px;
        margin-top: 5px;
        }

        .archive-posts li {
        margin: 8px 0;
        }

        .archive-posts a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
        }

        .archive-posts a:hover {
        color: var(--crestwood-blue);
        text-decoration: underline;
        }

        .browse-link {
        display: inline-block;
        color: var(--crestwood-blue);
        text-decoration: none;
        font-weight: 500;
        }

        .browse-link:hover {
        text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
        .article-layout {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .article-sidebar {
            position: static;
        }
        }

        .archive-simple {
        list-style: none;
        padding-left: 20px;
        }

        .archive-simple li {
        margin: 10px 0;
        }

        .archive-simple a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
        display: block;
        }

        .archive-simple a:hover {
        color: var(--crestwood-blue);
        text-decoration: underline;
        }

        .archive-simple small {
        font-size: 11px;
        color: var(--text-gray);
        }

        /* Lists */
        .article-content ul {
          list-style-type: disc;
        }
        
        .article-content ol {
          list-style-type: decimal;
        }
        
        /* Links */
        .article-content a {
          color: var(--crestwood-gold);
          text-decoration: underline;
        }
        
        .article-content a:hover {
          color: var(--crestwood-gold-dark);
        }
        
        /* Table */
        .article-content table {
          width: 100%;
          border-collapse: collapse;
          margin: 20px 0;
          font-size: 15px;
        }
        
        .article-content th,
        .article-content td {
          border: 1px solid var(--border-gold);
          padding: 10px 14px;
          text-align: left;
        }
        
        .article-content th {
          background: rgba(44, 64, 89, 0.05);
          font-weight: 600;
          color: var(--crestwood-blue);
        }
        
        .article-content tr:nth-child(even) {
          background: var(--soft-white);
        }
