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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #222;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: white;
            border-bottom: 1px solid #ebebeb;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 2px rgba(0,0,0,0.08);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-placeholder {
            background: linear-gradient(135deg, #87CEEB, #4682B4);
            width: 40px;
            height: 40px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 16px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: #4682B4;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            padding: 40px 0;
            background: white;
        }

        .hero-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: -80px;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #666;
        }

        .hero-image-placeholder::after {
            content: '📸 Hero Image: Before/After Pressure Washing';
            text-align: center;
            padding: 40px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1440px;
            width: 100%;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 60px;
            margin-top: -60px;
        }

        .hero-text {
            flex: 1;
            color: #222;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #222;
        }

        .hero-tagline {
            font-size: 28px;
            font-weight: 600;
            color: #4682B4;
        }

        /* Contact Card - Custom Style */
        .contact-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
            padding: 24px;
            width: 400px;
            flex-shrink: 0;
            border: 1px solid #e0e0e0;
        }

        .contact-card h2 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #222;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 14px;
            color: #222;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #B0B0B0;
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4682B4;
            border-width: 2px;
        }

        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }

        .checkbox-group {
            display: none;
        }

        .hidden {
            display: none;
        }

        .submit-button {
            width: 100%;
            background: linear-gradient(135deg, #4682B4 0%, #5A9BD5 100%);
            color: white;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .submit-button:hover {
            background: linear-gradient(135deg, #36648B 0%, #4682B4 100%);
            transform: scale(1.01);
            box-shadow: 0 4px 12px rgba(70, 130, 180, 0.3);
        }

        /* Success Message */
        .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: white;
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            z-index: 1000;
            text-align: center;
            max-width: 400px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .success-message.show {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .success-message-icon {
            font-size: 64px;
            margin-bottom: 20px;
            animation: successBounce 0.6s ease-out;
        }

        @keyframes successBounce {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-message h3 {
            font-size: 28px;
            font-weight: 700;
            color: #222;
            margin-bottom: 12px;
        }

        .success-message p {
            font-size: 16px;
            color: #717171;
            margin-bottom: 24px;
        }

        .success-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .success-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }

        .close-button {
            background: #4682B4;
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .close-button:hover {
            background: #36648B;
        }

        .required {
            color: #E61E4D;
        }

        /* Main Content */
        .main-content {
            max-width: 1440px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .section {
            margin-bottom: 80px;
        }

        .section h2 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #222;
            padding-bottom: 16px;
            border-bottom: 1px solid #ebebeb;
        }

        /* Story Section */
        .story-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 32px;
        }

        .story-text {
            font-size: 18px;
            line-height: 1.8;
            color: #484848;
        }

        .story-text p {
            margin-bottom: 20px;
        }

        .story-highlight {
            background: #F7F7F7;
            padding: 32px;
            border-radius: 12px;
            text-align: center;
        }

        .story-stat {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .story-highlight h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #222;
        }

        .story-highlight p {
            font-size: 16px;
            color: #717171;
        }

        /* Reviews Section */
        .reviews-placeholder {
            background: #F7F7F7;
            border-radius: 12px;
            padding: 60px;
            text-align: center;
            color: #717171;
            font-size: 18px;
            margin-top: 32px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 32px;
        }

        .service-card {
            border: 1px solid #DDDDDD;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            display: block;
            background: white;
            width: 100%;
            text-align: left;
            padding: 0;
        }

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

        .service-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .service-info {
            padding: 20px;
        }

        .service-info h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #222;
        }

        .service-info p {
            font-size: 14px;
            color: #717171;
        }

        /* Footer */
        footer {
            background: #F7F7F7;
            border-top: 1px solid #DDDDDD;
            padding: 48px 0;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #222;
        }

        .footer-section p {
            color: #717171;
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
        }

        .footer-section a,
        .footer-section button {
            color: #717171;
            text-decoration: none;
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
        }

        .footer-section a:hover,
        .footer-section button:hover {
            text-decoration: underline;
        }

        .social-links {
            display: flex;
            gap: 12px;
            font-size: 24px;
        }

        /* Service Detail Page */
        .service-detail {
            max-width: 1440px;
            margin: 0 auto;
            padding: 20px 40px 40px;
            position: relative;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #222;
            background: white;
            border: 1px solid #DDDDDD;
            font-weight: 600;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.2s;
            cursor: pointer;
            font-size: 16px;
            font-family: inherit;
            position: sticky;
            top: 80px;
            z-index: 50;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 32px;
            width: fit-content;
        }

        .back-button:hover {
            background: #F7F7F7;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .service-header {
            margin-bottom: 24px;
        }

        .service-header h1 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #222;
        }

        .service-header p {
            font-size: 16px;
            color: #717171;
        }

        .price-section {
            background: #F7F7F7;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 32px;
        }

        .price-section h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #222;
        }

        .price-info p {
            margin-bottom: 8px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .gallery-item {
            background: #F7F7F7;
            border-radius: 12px;
            overflow: hidden;
        }

        .gallery-image {
            background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #717171;
        }

        .gallery-caption {
            padding: 16px;
            background: white;
        }

        .gallery-caption h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #222;
        }

        .gallery-caption p {
            font-size: 14px;
            color: #717171;
            margin-bottom: 4px;
        }

        .price-tag {
            font-size: 16px;
            font-weight: 600;
            color: #4682B4;
            margin-top: 8px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-image-container {
                height: 400px;
                margin-bottom: -60px;
            }

            .hero-content {
                flex-direction: column;
                gap: 30px;
                margin-top: 80px;
            }

            .contact-card {
                width: 100%;
                max-width: 500px;
            }

            .story-content {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-image-container {
                height: 400px;
                margin-bottom: 0;
                border-radius: 12px;
            }

            .hero-content {
                margin-top: 20px;
            }

            .hero-text {
                display: none;
            }

            .contact-card {
                padding: 16px;
            }

            .contact-card h2 {
                font-size: 18px;
                margin-bottom: 16px;
            }

            .form-group {
                margin-bottom: 12px;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-tagline {
                font-size: 20px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .service-header h1 {
                font-size: 28px;
            }

            .service-header p {
                font-size: 15px;
            }

            .price-section {
                padding: 16px;
            }

            .price-section h2 {
                font-size: 18px;
            }

            .price-info {
                font-size: 14px;
            }
        }

        .page {
            display: none !important;
        }

        .page.active {
            display: block !important;
        }
    

