:root {
            --forest-green: #1a4d2e;
            --sage-green: #4f6f52;
            --mint-green: #a4c3a2;
            --cream: #faf8f5;
            --off-white: #ffffff;
            --dark-text: #1a1a1a;
            --mid-text: #4a4a4a;
            --light-text: #6a6a6a;
        }

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

        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            background: var(--off-white);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3 {
            font-family: 'Crimson Pro', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            color: var(--forest-green);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
            color: var(--forest-green);
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--sage-green);
        }

        /* Container */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header/Nav */
        header {
            padding: 1rem 0;
            background: var(--off-white);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(26, 77, 46, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-family: 'Crimson Pro', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--forest-green);
            text-decoration: none;
        }

        nav a {
            color: var(--mid-text);
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--forest-green);
        }

        /* Sections */
        section {
            padding: 5rem 0;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }

        section:nth-child(1) { animation-delay: 0.1s; }
        section:nth-child(2) { animation-delay: 0.2s; }
        section:nth-child(3) { animation-delay: 0.3s; }
        section:nth-child(4) { animation-delay: 0.4s; }
        section:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .hero {
            padding: 5rem 0 5rem 0;
            background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
        }

        .hero p.subtitle {
            font-size: 1.25rem;
            color: var(--mid-text);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .hero p.description {
            font-size: 1.1rem;
            color: var(--light-text);
            margin-bottom: 2.5rem;
            max-width: 700px;
        }

        .hero .tagline {
            font-size: 1rem;
            color: var(--sage-green);
            font-weight: 600;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--forest-green);
            color: white;
            border: 2px solid var(--forest-green);
        }

        .btn-primary:hover {
            background: var(--sage-green);
            border-color: var(--sage-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 77, 46, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: var(--forest-green);
            border: 2px solid var(--forest-green);
        }

        .btn-secondary:hover {
            background: var(--forest-green);
            color: white;
            transform: translateY(-2px);
        }

        /* Background Section */
        .background {
            background: var(--cream);
        }

        .timeline {
            margin-top: 2rem;
            padding-left: 2rem;
            border-left: 3px solid var(--mint-green);
        }

        .timeline-item {
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.25rem;
            top: 0.5rem;
            width: 1rem;
            height: 1rem;
            background: var(--sage-green);
            border-radius: 50%;
            border: 3px solid var(--cream);
        }

        .timeline-item h4 {
            color: var(--forest-green);
            font-family: 'Crimson Pro', serif;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .timeline-item p {
            color: var(--mid-text);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .publications {
            margin-top: 2.5rem;
            padding: 2rem;
            background: var(--off-white);
            border-radius: 8px;
            border-left: 4px solid var(--sage-green);
        }

        .publications h3 {
            margin-bottom: 1.5rem;
        }

        .publication-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(26, 77, 46, 0.1);
        }

        /* Pubs Description */
        .publication-item span {
            /* border-bottom: 1px solid rgba(26, 77, 46, 0.1); */
            color: var(--light-text); 
            font-size: 0.85rem;
        }

        .publication-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .publication-item p {
            color: var(--mid-text);
            font-size: 0.95rem;
            /* font-style: italic; */
        }

        .publication-item .pub-link {
            color: var(--sage-green);
            text-decoration: none;
            font-weight: 500;
            font-style: normal;
            display: inline-block;
            margin-top: 0.5rem;
            transition: color 0.3s ease;
        }

        .publication-item .pub-link:hover {
            color: var(--forest-green);
        }

        .cv-download {
            margin-top: 1.5rem;
        }

        .cv-download a {
            color: var(--sage-green);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .cv-download a:hover {
            color: var(--forest-green);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-item {
            padding: 2rem;
            background: var(--cream);
            border-radius: 8px;
            border-top: 3px solid var(--sage-green);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(26, 77, 46, 0.1);
            border-top-color: var(--forest-green);
        }

        .service-item h3 {
            margin-bottom: 1rem;
        }

        .service-item ul {
            list-style: none;
            margin-top: 1rem;
        }

        .service-item li {
            color: var(--mid-text);
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .service-item li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--sage-green);
            font-weight: bold;
        }

        /* Why Me Section */
        .why-me {
            background: var(--off-white);
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .benefit-item {
            display: flex;
            gap: 1rem;
            align-items: start;
        }

        .benefit-icon {
            color: var(--sage-green);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .benefit-text {
            color: var(--mid-text);
        }

        .credentials {
            margin-top: 3rem;
            padding: 2rem;
            background: var(--cream);
            border-radius: 8px;
        }

        .credentials h4 {
            color: var(--forest-green);
            font-family: 'Crimson Pro', serif;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .credentials ul {
            list-style: none;
        }

        .credentials li {
            color: var(--mid-text);
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .credentials li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--sage-green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .value-prop {
            margin-top: 2rem;
            padding: 2rem;
            background: var(--sage-green);
            border-radius: 8px;
            color: white;
        }

        .value-prop h4 {
            color: white;
            font-family: 'Crimson Pro', serif;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .value-prop p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        /* Process Section */
        .process {
            background: var(--cream);
        }

        .process-steps {
            margin-top: 2rem;
        }

        .step {
            display: flex;
            gap: 2rem;
            align-items: start;
            margin-bottom: 2.5rem;
            padding: 2rem;
            background: var(--off-white);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(26, 77, 46, 0.1);
        }

        .step-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--mint-green);
            font-family: 'Crimson Pro', serif;
            flex-shrink: 0;
            line-height: 1;
        }

        .step-content h4 {
            color: var(--forest-green);
            font-family: 'Crimson Pro', serif;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;

        }

        .step-content p {
            color: var(--mid-text);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--forest-green) 100%, var(--sage-green) 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section .cta-buttons {
            justify-content: center;
        }

        .cta-section .btn-primary {
            background: white;
            color: var(--forest-green);
            border-color: white;
        }

        .cta-section .btn-primary:hover {
            background: var(--cream);
            border-color: var(--cream);
        }

        .cta-section .btn-secondary {
            border-color: white;
            color: white;
        }

        .cta-section .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        footer {
            background: var(--cream);
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .contact-info {
            font-size: 1rem;
            color: var(--mid-text);
        }

        .contact-info a {
            color: var(--sage-green);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--forest-green);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-links a {
            color: var(--sage-green);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--forest-green);
        }

        .newsletter-signup {
            margin-top: 1rem;
            padding: 1.5rem;
            background: var(--off-white);
            border-radius: 8px;
            max-width: 500px;
        }

        .newsletter-signup p {
            color: var(--mid-text);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .newsletter-signup a {
            color: var(--sage-green);
            text-decoration: none;
            font-weight: 600;
        }

        .newsletter-signup a:hover {
            color: var(--forest-green);
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            section {
                padding: 3rem 0;
            }

            .hero {
                padding: 4rem 0 3rem 0;
            }

            nav {
                display: none;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .step {
                flex-direction: column;
                gap: 1rem;
            }

            .benefits {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        .contact-info span {
            font-size: 0.8rem;
        }