
        .btn-dark {
            background: var(--clr-bg);
            color: var(--clr-accent);
            border: none;
        }

        .btn-dark:hover {
            background: #222;
            color: #fff;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Inter, Arial, sans-serif;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--clr-text);
            background: var(--clr-bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Improve embedding and iframe compatibility */
        html {
            height: 100%;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        /* Ensure proper embedding behavior */
        body {
            min-height: 100%;
            position: relative;
        }

        /* Better mobile rendering */
        @media (max-width: 768px) {
            body {
                font-size: 1.1rem;
                line-height: 1.7;
                -webkit-overflow-scrolling: touch;
            }
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Enhanced container responsiveness */
        @media (max-width: 1200px) {
            .container {
                max-width: 100%;
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 0.75rem;
            }
        }

        /* Ensure consistent spacing on all screen sizes */
        @media (min-width: 1400px) {
            .container {
                max-width: 1400px;
                padding: 0 2rem;
            }
        }

        section {
            padding: 5rem 0 5.5rem 0;
        }

        main section:nth-of-type(even) {
            background: var(--clr-surface);
        }

        main section:nth-of-type(odd) {
            background: var(--clr-bg);
        }

        section h2 {
            text-align: center;
            margin-bottom: 2.5rem;
            margin-top: 0;
            letter-spacing: 0.01em;
        }

        /* Add more separation above and below section headings */
        #services h2,
        #projects h2 {
            margin-top: 0;
            margin-bottom: 3rem;
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            letter-spacing: -0.02em;
        }

        /* Enhanced typography for larger displays */
        @media (min-width: 1200px) {
            #services h2,
            #projects h2 {
                margin-bottom: 4rem;
                font-size: clamp(2.5rem, 3vw, 3.5rem);
            }
        }

        /* Add extra padding to the top of the section for visual separation */
        #services,
        #projects {
            padding-top: 4rem;
            padding-bottom: 6rem;
            display: flex;
            align-items: center;
            min-height: 80vh;
        }

        /* Ensure services container centers content properly */
        #services .container {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* Enhanced vertical centering for larger displays */
        @media (min-width: 1200px) {
            #services,
            #projects {
                padding-top: 5rem;
                padding-bottom: 8rem;
                min-height: 90vh;
            }
        }

        @media (max-width: 768px) {
            #services,
            #projects {
                padding-top: 2rem;
                padding-bottom: 3rem;
                min-height: auto;
                display: block;
            }
            
            #services .container {
                display: block;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 2.5rem 0 3rem 0;
            }
        }

        img,
        video {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        /* Responsive button adjustments */
        @media (max-width: 768px) {
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .btn {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
                min-width: 120px;
                text-align: center;
            }
        }

        .btn-primary {
            background: var(--clr-accent);
            color: var(--clr-bg);
            border: none;
        }

        .btn-primary:hover {
            background: var(--clr-accent-2);
        }

        .btn-secondary {
            border: 1px solid var(--clr-accent);
            color: var(--clr-accent);
            background: transparent;
        }

        .btn-secondary:hover {
            background: var(--clr-accent);
            color: var(--clr-bg);
        }
        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .projects-grid {
                gap: 1rem;
            }
        }

        .project-card {
            background: var(--clr-surface);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
        }

        @media (hover: hover) {
            .project-card:hover {
                transform: scale(1.02);
            }
        }

        @media (max-width: 768px) {
            .project-card {
                transform: none !important;
            }
            
            .project-card:hover {
                transform: none !important;
            }
        }

        .project-image {
            height: 200px;
            background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
            position: relative;
        }

        .project-content {
            padding: 1.5rem;
        }

        @media (max-width: 768px) {
            .project-content {
                padding: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .project-content {
                padding: 1rem;
            }
        }

        .project-content h3 {
            margin-bottom: 0.75rem;
        }

        @media (max-width: 768px) {
            .project-content h3 {
                font-size: 1.25rem;
                margin-bottom: 0.6rem;
            }
        }

        @media (max-width: 480px) {
            .project-content h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
        }

        .project-content p {
            margin-bottom: 1rem;
            color: var(--clr-muted);
        }

        .project-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .project-content .view-details {
            width: fit-content;
            display: inline-block;
            margin-top: 0.5rem;
            border: none !important;
            min-height: 40px;
            background: var(--clr-accent) !important;
            color: var(--clr-bg) !important;
        }

        .tag {
            padding: 0.25rem 0.75rem;
            background: rgba(255, 106, 26, 0.1);
            color: var(--clr-accent);
            border-radius: 20px;
            font-size: 0.875rem;
        }

        /* Process Steps */
        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-card {
            background: var(--clr-surface);
            padding: 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--clr-line);
            transition: var(--transition);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: var(--clr-accent);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--clr-accent);
            border-radius: var(--radius);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon i {
            color: var(--clr-bg);
            font-size: 1.5rem;
        }

        .contact-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            margin-top: 0;
            color: var(--clr-text);
        }

        .contact-details {
            color: var(--clr-muted);
            line-height: 1.6;
        }

        .contact-link {
            color: var(--clr-accent);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .contact-link:hover {
            color: var(--clr-accent-2);
            text-decoration: underline;
        }

        .contact-details address {
            font-style: normal;
        }

        .address-link {
            display: inline-block;
            transition: var(--transition);
        }

        .address-link:hover {
            transform: scale(1.02);
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
            gap: 1rem;
        }

        .hours-item:last-child {
            margin-bottom: 0;
        }

        .hours-days {
            font-weight: 500;
            color: var(--clr-text);
        }

        .hours-time {
            color: var(--clr-muted);
            font-size: 0.9rem;
        }

        /* Contact Form */
        .contact-content {
            display: flex;
            justify-content: center;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        label {
            margin-bottom: 0.5rem;
            color: var(--clr-muted);
            font-size: 0.875rem;
        }

        input,
        select,
        textarea {
            padding: 0.75rem;
            background: var(--clr-surface);
            border: 1px solid var(--clr-line);
            border-radius: var(--radius);
            color: var(--clr-text);
            font-family: inherit;
            transition: var(--transition);
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--clr-accent);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .error-message {
            color: var(--clr-warn);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .error input,
        .error select,
        .error textarea {
            border-color: var(--clr-warn);
        }

        .error .error-message {
            display: block;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .contact-grid {
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-card {
                padding: 1.5rem;
            }

            .hours-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
            }
        }

        @media (max-width: 480px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Add touch-friendly improvements for mobile */
        @media (max-width: 768px) {
            /* Increase tap targets for better touch interaction */
            a, button, .btn, .nav-menu a, .project-card {
                min-height: 44px;
                min-width: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .project-card {
                min-height: auto;
                min-width: auto;
                display: block;
            }
            
            /* Better spacing for readability */
            body {
                font-size: 1.1rem;
                line-height: 1.7;
            }
            
            /* Prevent horizontal scrolling */
            body {
                overflow-x: hidden;
            }
            
            /* Improve text contrast on mobile */
            p, li {
                color: var(--clr-text);
                opacity: 0.9;
            }
        }

        /* Additional mobile optimizations */
        @media (max-width: 480px) {
            /* Smaller padding for very small screens */
            .container {
                padding: 0 0.75rem;
            }
            
            /* Ensure images don't break layout */
            img, video {
                max-width: 100%;
                height: auto;
            }
            
            /* Better mobile typography */
            h1 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            h2 {
                font-size: 1.5rem;
                line-height: 1.3;
            }
            
            h3 {
                font-size: 1.25rem;
                line-height: 1.4;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
    