    
    <style>
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #8F6E6E;
            --primary-hover: #474747;
            --text-dark: #1B1B1B;
            --text-light: #5E5E5E;
            --bg-light: #F6F6F6;
            --bg-white: #FFFFFF;
            --border-color: #D4D4D4;
            --accent-color: #56C099;
        }

        body {
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', Georgia, serif;
            font-weight: 900;
            line-height: 1.2;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header Styles */
        header {
            background: var(--bg-white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            min-height: 80px;
        }

        .logo {
            max-height: 80px;
            width: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        nav a {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.063em;
            text-transform: uppercase;
            transition: color 0.3s;
            padding: 6px;
        }

        nav a:hover,
        nav a.active {
            color: #40B39A;
            border-bottom: 1px solid var(--border-color);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px;
            z-index: 100;
            position: relative;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-btn svg {
            width: 32px;
            height: 32px;
            fill: var(--text-dark);
            pointer-events: none;
            display: block;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: #161616;
            color: #F7F7F7;
            transition: right 0.3s ease;
            z-index: 10002;
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10001;
        }

        .mobile-nav-overlay.active {
            display: block;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            color: #F7F7F7;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0 24px;
        }

        .mobile-nav li {
            border-bottom: 1px solid rgba(76, 76, 76, 0.5);
        }

        .mobile-nav a {
            display: block;
            padding: 24px 0;
            color: #F7F7F7;
            font-size: 22px;
            font-weight: 400;
        }

        /* Hero Section */
        .hero {
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 139px 0 72px;
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
        }

        .hero h1 {
            font-size: 54px;
            margin-bottom: 24px;
            color: #000000;
        }

        .hero p {
            font-size: 19px;
            color: var(--accent-color);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Section Styles */
        section {
            padding: 56px 0;
        }

        .section-heading {
            text-align: center;
            font-size: 39px;
            margin-bottom: 40px;
            color: #000000;
        }

        /* Introduction Section */
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .intro-image {
            width: 100%;
            aspect-ratio: 1.33;
            object-fit: cover;
            border-radius: 8px;
        }

        .intro-content h6 {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.063em;
        }

        .intro-content h2 {
            font-size: 33px;
            margin-bottom: 24px;
            color: #000000;
        }

        .intro-content p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px 24px;
            margin-top: 48px;
        }

        .card {
            background: var(--bg-white);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }

        .card-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1.33;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .card:hover .card-overlay {
            opacity: 1;
        }

        .card-overlay h3 {
            color: var(--accent-color);
            font-size: 26px;
            padding: 20px;
            text-align: center;
        }

        .card-content {
            padding: 24px;
        }

        .card-content p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Tools Section */
        .tools-section {
            background: #F1F1F1;
        }

        .tools-card {
            background: var(--bg-white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .tools-card img {
            width: 100%;
            aspect-ratio: 1.33;
            object-fit: cover;
        }

        .tools-card-content {
            padding: 24px;
        }

        .tools-card-content p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Contact Section */
        .contact-section {
            background: var(--bg-light);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--bg-white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .contact-form h4 {
            font-size: 22px;
            margin-bottom: 32px;
            color: var(--text-dark);
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-group label {
            position: absolute;
            top: 30%;
            left: 15px;
            color: var(--text-light);
            transition: all 0.15s ease;
            pointer-events: none;
            font-size: 16px;
        }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label {
            top: 8px;
            font-size: 12px;
            color: #40B39A;
        }

        .form-group input {
            width: 100%;
            padding: 23px 15px 7px;
            border: none;
            border-bottom: 4px solid var(--border-color);
            background: var(--bg-light);
            font-size: 16px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input:focus {
            border-bottom-color: #40B39A;
        }

        .submit-btn {
            width: 100%;
            padding: 16px 32px;
            background: #DADADA;
            color: var(--text-dark);
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.063em;
        }

        .submit-btn:hover {
            background: #CCCCCC;
        }

        .recaptcha-notice {
            font-size: 12px;
            color: var(--text-light);
            text-align: center;
            margin-top: 16px;
        }

        .recaptcha-notice a {
            color: #40B39A;
        }

        /* Footer */
        footer {
            background: var(--bg-white);
            padding: 72px 0 40px;
            text-align: center;
        }

        .footer-nav {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-nav a {
            color: var(--text-dark);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.063em;
        }

        .footer-nav a:hover {
            color: #40B39A;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .social-links a {
            display: inline-flex;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        .social-links svg {
            width: 40px;
            height: 40px;
        }

        .footer-company {
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .footer-copyright {
            font-size: 13px;
            color: var(--text-light);
        }

        /* Chatbot Styles */
        #chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        #chatbot-button {
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        #chatbot-button:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        #chat-window {
            display: none;
            width: 350px;
            height: 450px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            flex-direction: column;
            overflow: hidden;
            margin-bottom: 10px;
        }

        #chat-header {
            background-color: #007bff;
            color: white;
            padding: 15px;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #close-chatbot {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            line-height: 1;
        }

        #chat-messages {
            flex-grow: 1;
            padding: 15px;
            overflow-y: auto;
            background-color: #f9f9f9;
        }

        .message {
            margin-bottom: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            max-width: 80%;
            line-height: 1.4;
        }

        .message.user {
            background-color: #dcf8c6;
            margin-left: auto;
            text-align: right;
        }

        .message.bot {
            background-color: #e0e0e0;
            margin-right: auto;
        }

        #chat-input-container {
            display: flex;
            padding: 15px;
            border-top: 1px solid #eee;
            background-color: #fff;
        }

        #chat-input {
            flex-grow: 1;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 10px 15px;
            font-size: 14px;
            outline: none;
        }

        #chat-send-button {
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 10px 15px;
            margin-left: 10px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }

        #chat-send-button:hover {
            background-color: #0056b3;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .intro-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 40px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-heading {
                font-size: 28px;
            }

            .intro-content h2 {
                font-size: 24px;
            }

            nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .cards-grid {
                grid-template-columns: 1fr !important;
            }

            .contact-form {
                padding: 24px;
            }

            #chat-window {
                width: 300px;
                height: 400px;
            }

            #chatbot-button {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
    </style>