.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: var(--neon-blue); 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 var(--neon-blue); border-radius: 20px; padding: 3rem; box-shadow: 0 0 30px rgba(0, 243, 255, 0.1); }
.detailed-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
    border-color: rgba(0, 243, 255, 0.4);
}
.detailed-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--gradient-primary);
}
.detailed-card-icon {
    font-size: 5rem;
    color: var(--neon-blue);
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.4));
    min-width: 100px;
    text-align: center;
}
.detailed-card-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.detailed-card-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.detailed-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: #fff;
}
.detailed-card-list li i {
    color: var(--neon-blue);
    margin-right: 12px;
    filter: drop-shadow(0 0 5px var(--neon-blue));
}
.detailed-card-action {
    margin-left: auto;
    text-align: center;
    min-width: 180px;
}
@media (max-width: 900px) {
    .detailed-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    .detailed-card::before {
        top: 0; left: 0; width: 100%; height: 4px;
    }
    .detailed-card-action {
        margin-left: 0;
        width: 100%;
    }
    .detailed-card-list {
        align-items: center;
    }
}
        @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;
            }
        }