@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Nunito:wght@600;700;800&display=swap");

:root {
            --dusty-rose: #be185d;
            --cream: #fffbeb;
            --dark-brown: #451a03;
            --light-gray: #f5f5f5;
            --border-gray: #e0e0e0;
        }

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

        body {
            font-family: 'Lato', sans-serif;
            color: var(--dark-brown);
            background-color: var(--cream);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 2.5rem;
            letter-spacing: -0.01em;
            margin-bottom: 0.5rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        p {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
        }

        a {
            color: var(--dusty-rose);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            text-decoration: underline;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Header & Navigation */
        header {
            background-color: white;
            border-bottom: 1px solid var(--border-gray);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-family: 'Nunito', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--dark-brown);
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            color: var(--dark-brown);
            font-weight: 600;
            font-size: 1rem;
            border-bottom: 2px solid transparent;
            padding-bottom: 0.25rem;
            transition: border-color 0.3s ease;
        }

        nav a:hover {
            border-bottom-color: var(--dusty-rose);
            text-decoration: none;
        }

        nav a.active {
            border-bottom-color: var(--dusty-rose);
            color: var(--dusty-rose);
        }

        /* Hero Section */
        #hero {
            background-color: var(--cream);
            padding: 4rem 2rem;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-image {
            position: relative;
            height: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content h1 {
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            color: var(--dark-brown);
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }

        .hero-accent {
            width: 60px;
            height: 4px;
            background-color: var(--dusty-rose);
            margin-bottom: 2rem;
        }

        /* Service Overview Section */
        #service_overview {
            background-color: white;
            padding: 5rem 2rem;
        }

        .service-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            color: var(--dark-brown);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--dark-brown);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: var(--cream);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .card-image {
            height: 200px;
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-card h3 {
            color: var(--dusty-rose);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--dark-brown);
            font-size: 1rem;
            margin-bottom: 0;
        }

        /* Who We Serve Section */
        #who_we_serve {
            background-color: var(--cream);
            padding: 5rem 2rem;
        }

        .who-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .who-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .who-header h2 {
            color: var(--dark-brown);
            margin-bottom: 1rem;
        }

        .personas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
        }

        .persona {
            text-align: center;
        }

        .persona-image {
            height: 280px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .persona-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .persona h3 {
            color: var(--dark-brown);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .persona p {
            color: var(--dark-brown);
            font-size: 1rem;
            margin-bottom: 0;
        }

        /* Workflow Strip Section */
        #workflow_strip {
            background-color: white;
            padding: 4rem 2rem;
        }

        .workflow-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .workflow-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .workflow-header h2 {
            color: var(--dark-brown);
            margin-bottom: 1rem;
        }

        .workflow-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .workflow-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--dusty-rose);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Nunito', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 1rem;
        }

        .workflow-step h3 {
            color: var(--dark-brown);
            font-size: 1.125rem;
            margin-bottom: 0;
        }

        .workflow-connector {
            position: absolute;
            top: 30px;
            right: -120px;
            width: 100px;
            height: 2px;
            background-color: var(--dusty-rose);
            display: none;
        }

        @media (min-width: 768px) {
            .workflow-connector {
                display: block;
            }
        }

        .workflow-step:last-child .workflow-connector {
            display: none;
        }

        /* CTA Section */
        #cta_section {
            background-color: var(--cream);
            padding: 6rem 2rem;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-container h2 {
            color: var(--dark-brown);
            margin-bottom: 1rem;
        }

        .cta-container p {
            color: var(--dark-brown);
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--dusty-rose);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.125rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
        }

        .cta-button:hover {
            background-color: #a01451;
            transform: translateY(-2px);
            text-decoration: none;
        }

        /* Footer */
        footer {
            background-color: var(--dark-brown);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .footer-column p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.9);
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--dusty-rose);
            text-decoration: none;
        }

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

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

            h2 {
                font-size: 1.875rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-image {
                height: 350px;
            }

            nav ul {
                gap: 1.5rem;
                font-size: 0.95rem;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }

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

            .workflow-steps {
                flex-direction: column;
            }

            .workflow-connector {
                display: none !important;
            }

            #hero {
                padding: 2rem 1rem;
            }

            #service_overview {
                padding: 3rem 1rem;
            }

            #who_we_serve {
                padding: 3rem 1rem;
            }

            #workflow_strip {
                padding: 3rem 1rem;
            }

            #cta_section {
                padding: 4rem 1rem;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
