
        :root {
            --primary-color: #007bff; /* Blue */
            --secondary-color: #343a40; /* Dark Gray */
            --light-bg: #f8f9fa; /* Light Gray */
            --font-family: 'Inter', sans-serif;
            
            --brand-fg: #0f172a;            /* primary text (OpenCraft) */
            --brand-muted: #6b7280;         /* secondary text (Solutions, LLC) */
            --brand-accent: #0ea5e9;        /* tilde color (accent) */
            --brand-font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
            --brand-size-scale: 1;          /* scale the whole logo */
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            /* A subtle grid pattern for a technical, clean aesthetic */
            background-color: #ffffff;
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.035) 2px, transparent 2px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.035) 2px, transparent 2px);
            background-size: 25px 25px; /* Size of the grid squares */
            background-attachment: fixed; /* Makes the background static */
            color: var(--secondary-color);
        }


        /* Wordmark: OpenCraft */
        /* Logo container */
        .logo {
            font-family:var(--brand-font);
            display:flex;
            align-items:center;
            gap:18px;
            transform: scale(var(--size-scale));
        }

        .brand {
            font-weight:700;
            font-size:48px;
            letter-spacing: -0.02em;
            color:var(--fg);
            line-height:1;
            white-space:nowrap;
        }

        /* Secondary text: Solutions, LLC */
        .sub {
            font-weight:600;
            font-size:20px;
            color:var(--muted);
            margin-left:4px;
            align-self:flex-end;
            transform: translateY(4px);
        }

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

        header {
            background: var(--secondary-color);
            color: white;
            padding: 1rem 0;
            border-bottom: 4px solid var(--primary-color);
        }

        header .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        header nav a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
        }
        
        header .logo-link {
            color: white;
            text-decoration: none;
        }

        .hero {
            background: var(--light-bg);
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .hero p {
            font-size: 1.5rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            border: none;
            font-weight: bold;
            transition: background 0.3s ease;
            cursor: pointer;
            font-family: var(--font-family); /* Ensure font consistency on <button> */
        }

        .cta-button:hover {
            background: #0056b3; /* Darker blue on hover */
        }

        .services-section {
            padding: 60px 0;
            text-align: center;
        }

        .services-section h2 {
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--primary-color);
        }

        .services-grid {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap; /* Allows wrapping on smaller screens */
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-align: left;
            flex: 1 1 300px; /* Allows cards to grow/shrink, 300px minimum width */
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h3 {
            color: var(--secondary-color);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        .credibility-section {
            background: var(--secondary-color);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        footer {
            text-align: center;
            padding: 20px 0;
            background: var(--light-bg);
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        /* --- CTA Minimal Section --- */
        .cta-minimal-section {
            /* Using secondary color for a consistent dark theme */
            background-color: var(--secondary-color);
            color: white;
            padding: 60px 20px;
            margin: 40px 0;
            text-align: center;
        }
        
        .cta-minimal-section .container {
            max-width: 900px;
            /* The global .container already handles margin: auto and padding */
        }
        
        .cta-minimal-section .cta-warning-headline {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.4;
        }
        
        /* Overrides for the button within this specific section */
        .cta-minimal-section .cta-button {
            background-color: #ff9900; /* High-visibility orange/gold */
            color: var(--secondary-color);
            font-size: 1.1rem;
            font-weight: 600;
            padding: 15px 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-minimal-section .cta-button:hover {
            background-color: #cc7a00; /* Darker orange on hover */
        }
        
        .cta-minimal-section .cta-subtext {
            font-size: 1rem;
            opacity: 0.85;
            margin-top: 20px;
        }
        
        /* Simple responsiveness for mobile */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .services-grid {
                flex-direction: column;
            }
        
            .cta-minimal-section {
                padding: 40px 15px;
            }
        
            .cta-minimal-section .cta-warning-headline {
                font-size: 1.5rem;
            }
        }

        /* --- Contact Form Styles --- */
        .contact-form-container {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.7s ease-in-out, opacity 0.5s ease-in-out, padding 0.7s ease-in-out;
            margin-top: 20px;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0 30px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: left; /* Override hero's text-align: center */
        }

        .contact-form-container.visible {
            max-height: 1000px; /* Large enough to not clip content */
            opacity: 1;
            padding: 30px;
        }

        #contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        #contact-form .form-field-full,
        #contact-form .form-buttons {
            grid-column: 1 / -1;
        }

        #contact-form select,
        #contact-form input,
        #contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 1rem;
            box-sizing: border-box; /* Important for padding and width */
            background-color: #f4f4f4;
            color: #333;
        }

        #contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 10px;
        }

        .cta-button.secondary {
            background: var(--secondary-color);
        }
        .cta-button.secondary:hover {
            background: #5a6268;
        }

        /* Mobile responsiveness for the form */
        @media (max-width: 768px) {
            #contact-form {
                grid-template-columns: 1fr;
            }
            .form-buttons {
                flex-direction: column-reverse; /* Stack buttons, submit on top */
            }
        }

        /* --- Schedule Page Styles --- */
        .calendly-inline-widget {
            min-width: 320px;
            height: 700px;
            border: 1px solid #444;
            border-radius: 8px;
            margin: 20px auto 0; /* Add top margin and center horizontally */
        }

        /* --- Team Page Styles --- */
        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px; /* Space between cards */
            justify-content: center;
            margin-top: 40px;
        }

        .team-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            text-align: center;
            flex: 1 1 320px; /* Responsive cards with a base width */
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        .team-card .name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        .team-card .title {
            font-size: 1rem;
            color: #6c757d; /* Muted text color */
            margin-bottom: 15px;
        }



        