.service-detail-section {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 4rem;
            backdrop-filter: blur(10px);
            margin-bottom: 4rem;
        }
        .service-detail-section h2 { color: #fff; margin-bottom: 1.5rem; font-size: 2.2rem; }
        .service-detail-section p { color: var(--text-muted); line-height: 1.8; font-size: 1.1rem; margin-bottom: 2rem; }
        .feature-list { list-style: none; margin-bottom: 2rem; }
        .feature-list li { margin-bottom: 1rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px;}
        .feature-list li i { color: #00f3ff; margin-top: 5px; }
        .page-form-container {
            background: linear-gradient(135deg, rgba(0, 81, 255, 0.05), rgba(0, 0, 0, 0.5));
            border: 1px solid #00f3ff;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
        }
            @media (max-width: 768px) {
            .container.hero-content {
                grid-template-columns: 1fr !important;
                text-align: center;
                gap: 2rem !important;
            }
            .service-detail-section {
                padding: 1.5rem !important;
            }
            .page-form-container {
                padding: 1.5rem !important;
            }
            #sheetForm > div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
            }
            .hero-text h1 {
                font-size: 2.5rem !important;
            }
        }