/* --- GLOBAL STYLES --- */
body {
    background-image: url('https://image.pollinations.ai/prompt/A%20stunning,%20modern%20luxury%20home%20at%20dusk,%20with%20clean%20architectural%20lines.%20Subtle,%20glowing%20blue%20data%20lines%20are%20overlaid%20on%20the%20image,%20flowing%20towards%20the%20house,%20symbolizing%20smart%20technology%20and%20data.%20The%20mood%20is%20calm,%20sophisticated,%20and%20high-tech.%20Photorealistic,%20architectural%20photography.');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    color: #f1f5f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Glass Overlay */
.section-overlay {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Accordion Animation */
.faq-answer {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.faq-answer.active { opacity: 1; max-height: 500px; }
.rotate-icon { transition: transform 0.3s ease; }
.active .rotate-icon { transform: rotate(180deg); }

/* View Switching Animation */
.view-section { display: none; animation: fadeIn 0.3s ease-out; }
.view-section.active-view { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* Legal Typography */
.content-block h1 { font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; color: white; }
.content-block h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; color: white; border-bottom: 1px solid #334155; padding-bottom: 0.5rem; }
.content-block h3 { font-size: 1.125rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.75rem; color: white; }
.content-block p { color: #cbd5e1; margin-bottom: 1rem; line-height: 1.7; }
.content-block ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: #cbd5e1; }
.content-block li { margin-bottom: 0.5rem; }

/* Mobile Menu */
#mobile-menu { transition: max-height 0.3s ease-in-out; max-height: 0; overflow: hidden; }
#mobile-menu.open { max-height: 350px; }