        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

        :root {
            --primary-blue: #0080FF;
            --primary-green: #00D4AA;
            --text-dark: #1A2B5F;
            --text-gray: #6B7280;
            --bg-light: #F9FAFB;
            --border-light: #E5E7EB;

            /* Section Spacing Variables */
            --section-padding-large: 60px;
            --section-padding-medium: 40px;
            --section-padding-small: 20px;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: white;
            overflow-x: hidden;
        }

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

        /* Header */
        .header {
            padding: var(--section-padding-small) 0;
            background: white;
        }

        .logo-img {
            height: 3rem;
            width: auto;
            margin-bottom: 0.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            text-decoration: none;
        }

        .logo-circles {
            position: relative;
            width: 60px;
            height: 40px;
        }

        .circle {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 4px solid;
        }

        .circle-blue {
            border-color: var(--primary-blue);
            left: 0;
        }

        .circle-green {
            border-color: var(--primary-green);
            left: 20px;
        }

        /* Hero Section */
        .hero {
            padding: var(--section-padding-medium) 0 var(--section-padding-medium);
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 32px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Categories */
        .categories {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            max-width: 600px;
            margin: 0 auto;
        }

        .category-item {
            background: white;
            padding: 32px 24px;
            border-radius: 12px;
            text-align: center;
            font-weight: 500;
            color: var(--text-dark);
            border: 1px solid var(--border-light);
        }

        /* Services */
        .services {
            padding: 100px 0;
        }

        .services h2 {
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 80px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
        }

        .service-item {
            padding: 40px;
            border-radius: 16px;
            transition: all 0.3s ease;
            background: white;
            border: 1px solid var(--border-light);
        }

        .service-item:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            border-radius: 12px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            color: white;
            stroke-width: 2;
        }

        .service-item h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .service-item p {
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Contact Form */
        .contact {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .form-group input {
            padding: 12px 16px;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

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

        .form-group textarea {
            padding: 12px 16px;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            resize: vertical;
            transition: all 0.3s ease;
        }

        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
        }

        .consent-group {
            display: flex;
            align-items: start;
            gap: 12px;
            margin-bottom: 32px;
        }

        .consent-group input[type="checkbox"] {
            margin-top: 4px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .consent-group label {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.6;
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 128, 255, 0.3);
        }

        /* Footer */
        .footer {
            padding: 48px 0;
            text-align: center;
            border-top: 1px solid var(--border-light);
        }

        .footer-content {
            color: var(--text-gray);
            font-size: 14px;
        }

        .footer-links {
            margin-top: 16px;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-blue);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
            }

            .services h2 {
                font-size: 36px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .contact-form {
                padding: 32px 24px;
            }
        }

        /* Markdown Content Styling */
        .markdown-content {
            padding: 80px 0;
            min-height: 60vh;
        }

        .markdown-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .markdown-content h2 {
            font-size: 32px;
            font-weight: 600;
            margin-top: 48px;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .markdown-content h3 {
            font-size: 24px;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .markdown-content p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .markdown-content ul,
        .markdown-content ol {
            margin-bottom: 16px;
            padding-left: 32px;
            color: var(--text-gray);
        }

        .markdown-content li {
            margin-bottom: 8px;
            line-height: 1.8;
        }

        .markdown-content a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .markdown-content a:hover {
            color: var(--primary-green);
            text-decoration: underline;
        }

        /* Table / Markdown Styling */

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            font-size: 15px;
            background: white;
        }

        /* Remove default styling */
        table,
        th,
        td {
            border: none;
        }

        /* Headers */
        table thead th {
            text-align: left;
            padding: 16px 0;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6B7280;
            border-bottom: 2px solid #E5E7EB;
        }

        /* Body */
        table tbody td {
            text-align: left;
            padding: 20px 0;
            color: #374151;
            line-height: 1.6;
            border-bottom: 1px solid #F3F4F6;
            vertical-align: top;
            /* Important for multi-line content */
        }

        /* First column - make it stand out */
        table tbody td:first-child {
            font-weight: 600;
            color: #1F2937;
            min-width: 160px;
            /* Prevent cramping */
        }

        /* Last row - no border */
        table tbody tr:last-child td {
            border-bottom: none;
        }

        /* Add some breathing room between columns */
        table th:not(:last-child),
        table td:not(:last-child) {
            padding-right: 40px;
        }

        /* Handle strong/bold in tables */
        table strong {
            font-weight: 600;
            color: #1F2937;
        }

        /* Optional: Subtle hover for better readability */
        table tbody tr {
            transition: background-color 0.15s ease;
        }

        table tbody tr:hover {
            background-color: #FAFAFA;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            /* Switch to card layout on mobile */
            table {
                border: 0;
            }

            table thead {
                display: none;
            }

            table tbody tr {
                display: block;
                margin-bottom: 24px;
                padding: 20px;
                background: #F9FAFB;
                border-radius: 8px;
            }

            table tbody td {
                display: block;
                text-align: left;
                padding: 8px 0;
                border: none;
                position: relative;
            }

            /* First column becomes a header */
            table tbody td:first-child {
                font-size: 16px;
                margin-bottom: 12px;
                padding-bottom: 12px;
                border-bottom: 1px solid #E5E7EB;
            }

            /* Add labels for other columns */
            table tbody td:nth-child(2):before {
                content: "Details: ";
                font-weight: 600;
                color: #6B7280;
            }

            table tbody td:nth-child(3):before {
                content: "Source: ";
                font-weight: 600;
                color: #6B7280;
            }
        }

        /* For markdown content specifically */
        .markdown-content table {
            margin-top: 32px;
            margin-bottom: 32px;
        }

        /* Alternative minimal style for dense data */
        .table-compact td {
            padding: 12px 0;
            font-size: 14px;
        }

        /* Alternative style with row separators */
        .table-lined tbody tr {
            border-bottom: 1px solid #E5E7EB;
        }

        .table-lined tbody tr:last-child {
            border-bottom: none;
        }

        .table-lined tbody td {
            border: none;
            padding: 24px 0;
        }