/* /Components/LanguageSwitcherComponent.razor.rz.scp.css */
.language-switcher[b-9et44gjyr9] {
    position: relative;
}

.language-btn[b-9et44gjyr9] {
    background: rgba(255,255,255,0.9);
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    color: #495057;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

    .language-btn:hover[b-9et44gjyr9] {
        background: #f8f9fa;
        border-color: #667eea;
    }

.dropdown[b-9et44gjyr9] {
    position: relative;
}

.dropdown-menu[b-9et44gjyr9] {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

    .dropdown-menu.show[b-9et44gjyr9] {
        display: block;
    }

.dropdown-item[b-9et44gjyr9] {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    color: #495057;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

    .dropdown-item:hover[b-9et44gjyr9] {
        background: #f8f9fa;
    }

    .dropdown-item.active[b-9et44gjyr9] {
        background: #e3f2fd;
        color: #1565c0;
        font-weight: 500;
    }

.flag-icon[b-9et44gjyr9] {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
/* /Components/ToastComponent.razor.rz.scp.css */
.toast-container[b-p9ka6wermz] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
}

.toast[b-p9ka6wermz] {
    min-width: 320px;
    max-width: 400px;
    margin-bottom: 0.75rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100%);
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --toast-duration: 5000ms;
}

    .toast.show[b-p9ka6wermz] {
        opacity: 1;
        transform: translateX(0);
        animation: slideIn-b-p9ka6wermz 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .toast.hide[b-p9ka6wermz] {
        opacity: 0;
        transform: translateX(100%);
        animation: slideOut-b-p9ka6wermz 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

.toast-header[b-p9ka6wermz] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
}

.toast-body[b-p9ka6wermz] {
    padding: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Toast type specific styles */
.toast.bg-info[b-p9ka6wermz] {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(13, 110, 253, 0.85));
    color: white;
    border-left: 4px solid #0d6efd;
}

.toast.bg-success[b-p9ka6wermz] {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.95), rgba(25, 135, 84, 0.85));
    color: white;
    border-left: 4px solid #198754;
}

.toast.bg-warning[b-p9ka6wermz] {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95), rgba(255, 193, 7, 0.85));
    color: #212529;
    border-left: 4px solid #ffc107;
}

.toast.bg-danger[b-p9ka6wermz] {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(220, 53, 69, 0.85));
    color: white;
    border-left: 4px solid #dc3545;
}

/* Close button styling */
.toast-header .btn-close[b-p9ka6wermz] {
    filter: invert(1);
    opacity: 0.8;
    margin-left: auto;
    margin-right: 0;
    padding: 0.5rem;
    background-size: 0.8rem;
}

    .toast-header .btn-close:hover[b-p9ka6wermz] {
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }

/* Time indicator */
.toast-header small[b-p9ka6wermz] {
    margin-left: 0.75rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Hover effects */
.toast:hover[b-p9ka6wermz] {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transform: translateX(-2px);
}

/* Animation keyframes */
@keyframes slideIn-b-p9ka6wermz {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut-b-p9ka6wermz {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Progress bar animation */
.toast[b-p9ka6wermz]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform-origin: left;
    animation: progress-b-p9ka6wermz linear;
}

.toast.show[b-p9ka6wermz]::before {
    animation-duration: var(--toast-duration);
}

@keyframes progress-b-p9ka6wermz {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .toast-container[b-p9ka6wermz] {
        left: 1rem;
        right: 1rem;
        top: auto;
        bottom: 1rem;
    }

    .toast[b-p9ka6wermz] {
        min-width: unset;
        width: 100%;
        max-width: 100%;
    }

        .toast.show[b-p9ka6wermz] {
            transform: translateY(0);
        }

        .toast.hide[b-p9ka6wermz] {
            transform: translateY(100%);
        }

    @keyframes slideIn-b-p9ka6wermz {
        from {
            opacity: 0;
            transform: translateY(100%);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideOut-b-p9ka6wermz {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(100%);
        }
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.layout-container[b-zng79kxycj] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Header Styles */
.header[b-zng79kxycj] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container[b-zng79kxycj] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Brand Section */
.brand-section[b-zng79kxycj] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-logo[b-zng79kxycj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #2c3e50;
}

.logo-icon[b-zng79kxycj] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.brand-name[b-zng79kxycj] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.brand-tagline[b-zng79kxycj] {
    font-size: 0.85rem;
    color: #495057;
    font-weight: 500;
    white-space: nowrap;
}

/* Main Navigation */
.main-nav[b-zng79kxycj] {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.nav-link[b-zng79kxycj] {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .nav-link:hover[b-zng79kxycj] {
        color: #667eea;
        background: rgba(102, 126, 234, 0.1);
        transform: translateY(-1px);
    }

    .nav-link.active[b-zng79kxycj] {
        color: #667eea;
        background: rgba(102, 126, 234, 0.15);
        font-weight: 600;
    }

    .nav-link i[b-zng79kxycj] {
        font-size: 1.1rem;
    }

/* Header Actions */
.header-actions[b-zng79kxycj] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button[b-zng79kxycj] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

    .cta-button:hover[b-zng79kxycj] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        color: white;
    }

/* Mobile Menu */
.mobile-menu-btn[b-zng79kxycj] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav[b-zng79kxycj] {
    display: none;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .mobile-nav.show[b-zng79kxycj] {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

.mobile-nav-link[b-zng79kxycj] {
    padding: 0.75rem 1rem;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
}

    .mobile-nav-link:hover[b-zng79kxycj] {
        background: #f8f9fa;
    }

/* Main Content */
.main-content[b-zng79kxycj] {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

/* Footer Styles */
.footer[b-zng79kxycj] {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    margin-top: auto;
}

.footer-container[b-zng79kxycj] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.footer-grid[b-zng79kxycj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section[b-zng79kxycj] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand[b-zng79kxycj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo[b-zng79kxycj] {
    width: 40px;
    height: 40px;
    background: white;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
}

.footer-company[b-zng79kxycj] {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.footer-tagline[b-zng79kxycj] {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-links[b-zng79kxycj] {
    display: flex;
    gap: 1rem;
}

.social-link[b-zng79kxycj] {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-link:hover[b-zng79kxycj] {
        background: #667eea;
        transform: translateY(-2px);
    }

.footer-heading[b-zng79kxycj] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-links[b-zng79kxycj] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-links a[b-zng79kxycj] {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover[b-zng79kxycj] {
            color: #667eea;
        }

.footer-contact[b-zng79kxycj] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-contact li[b-zng79kxycj] {
        display: flex;
        align-items: center;
    }

    .footer-contact a[b-zng79kxycj] {
        color: #bdc3c7;
        text-decoration: none;
    }

        .footer-contact a:hover[b-zng79kxycj] {
            color: #667eea;
        }

    .footer-contact i[b-zng79kxycj] {
        color: #667eea;
    }

.newsletter-text[b-zng79kxycj] {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form[b-zng79kxycj] {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input[b-zng79kxycj] {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: white;
}

    .newsletter-input[b-zng79kxycj]::placeholder {
        color: #95a5a6;
    }

.newsletter-btn[b-zng79kxycj] {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

    .newsletter-btn:hover[b-zng79kxycj] {
        background: #764ba2;
    }

/* Footer Bottom */
.footer-bottom[b-zng79kxycj] {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright[b-zng79kxycj] {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-legal[b-zng79kxycj] {
    display: flex;
    gap: 1.5rem;
}

    .footer-legal a[b-zng79kxycj] {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

        .footer-legal a:hover[b-zng79kxycj] {
            color: #667eea;
        }

/* Responsive Design */
@media (max-width: 992px) {
    .header-container[b-zng79kxycj] {
        padding: 0.75rem 1.5rem;
    }

    .main-nav[b-zng79kxycj] {
        display: none;
    }

    .mobile-menu-btn[b-zng79kxycj] {
        display: block;
    }

    .header-actions[b-zng79kxycj] {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-content[b-zng79kxycj] {
        padding: 1.5rem;
    }

    .footer-container[b-zng79kxycj] {
        padding: 2rem 1.5rem;
    }

    .footer-bottom[b-zng79kxycj] {
        flex-direction: column;
        text-align: center;
    }
}


/* Language Change Loader */
.language-change-loader[b-zng79kxycj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .language-change-loader .spinner[b-zng79kxycj] {
        width: 50px;
        height: 50px;
        border: 5px solid #f3f3f3;
        border-top: 5px solid #667eea;
        border-radius: 50%;
        animation: spin-b-zng79kxycj 1s linear infinite;
    }

@keyframes spin-b-zng79kxycj {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Thêm vào file CSS */
.mobile-nav-divider[b-zng79kxycj] {
    margin: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-language-section[b-zng79kxycj] {
    padding: 1rem 1.5rem;
    margin-top: auto; /* Đẩy xuống dưới cùng */
    background: rgba(0, 0, 0, 0.1);
}

.mobile-language-title[b-zng79kxycj] {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-language-buttons[b-zng79kxycj] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mobile-language-btn[b-zng79kxycj] {
    padding: 0.75rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}

    .mobile-language-btn:hover[b-zng79kxycj] {
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-language-btn.active[b-zng79kxycj] {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border-color: #3b82f6;
    }
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ck3pkn2ns8] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-ck3pkn2ns8] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ck3pkn2ns8] {
    font-size: 1.1rem;
}

.bi[b-ck3pkn2ns8] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ck3pkn2ns8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ck3pkn2ns8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ck3pkn2ns8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ck3pkn2ns8] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ck3pkn2ns8] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ck3pkn2ns8] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ck3pkn2ns8]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-ck3pkn2ns8]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ck3pkn2ns8]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ck3pkn2ns8] {
        display: none;
    }

    .collapse[b-ck3pkn2ns8] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-ck3pkn2ns8] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/About.razor.rz.scp.css */
/* Hero Section */
.about-hero[b-c4n1jx5r43] {
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-background[b-c4n1jx5r43] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.floating-element[b-c4n1jx5r43] {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

    .floating-element.e1[b-c4n1jx5r43] {
        width: 300px;
        height: 300px;
        background: #667eea;
        top: -150px;
        right: -150px;
    }

    .floating-element.e2[b-c4n1jx5r43] {
        width: 200px;
        height: 200px;
        background: #764ba2;
        bottom: -100px;
        left: -100px;
    }

    .floating-element.e3[b-c4n1jx5r43] {
        width: 150px;
        height: 150px;
        background: #4CAF50;
        top: 50%;
        left: 10%;
    }

.hero-content[b-c4n1jx5r43] {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge[b-c4n1jx5r43] {
    display: inline-flex;
    align-items: center;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title[b-c4n1jx5r43] {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description[b-c4n1jx5r43] {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-stats[b-c4n1jx5r43] {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item[b-c4n1jx5r43] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-width: 180px;
    transition: transform 0.3s;
}

    .stat-item:hover[b-c4n1jx5r43] {
        transform: translateY(-5px);
    }

.stat-icon[b-c4n1jx5r43] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-content[b-c4n1jx5r43] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number[b-c4n1jx5r43] {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-label[b-c4n1jx5r43] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    text-align: left;
    white-space: nowrap;
}

/* Mission & Vision Section */
.mission-vision-section[b-c4n1jx5r43] {
    padding: 6rem 2rem;
    background: white;
}

.mv-container[b-c4n1jx5r43] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.mv-card[b-c4n1jx5r43] {
    position: relative;
    padding: 3rem;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

.mission-card[b-c4n1jx5r43] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vision-card[b-c4n1jx5r43] {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
}

.card-glow[b-c4n1jx5r43] {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.mv-card:hover[b-c4n1jx5r43] {
    transform: translateY(-8px);
}

.card-header[b-c4n1jx5r43] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-icon[b-c4n1jx5r43] {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.card-header h2[b-c4n1jx5r43] {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.card-description[b-c4n1jx5r43] {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.action-tag[b-c4n1jx5r43] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Values Section */
.values-section[b-c4n1jx5r43] {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-header[b-c4n1jx5r43] {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-title[b-c4n1jx5r43] {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle[b-c4n1jx5r43] {
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1.6;
}

.values-grid[b-c4n1jx5r43] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card[b-c4n1jx5r43] {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
}

    .value-card:hover[b-c4n1jx5r43] {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

.value-icon[b-c4n1jx5r43] {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
}

    .value-icon.quality[b-c4n1jx5r43] {
        background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    }

    .value-icon.trust[b-c4n1jx5r43] {
        background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    }

    .value-icon.transparency[b-c4n1jx5r43] {
        background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    }

    .value-icon.innovation[b-c4n1jx5r43] {
        background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    }

.value-card h3[b-c4n1jx5r43] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p[b-c4n1jx5r43] {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.value-tag[b-c4n1jx5r43] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #495057;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Story Timeline */
.story-section[b-c4n1jx5r43] {
    padding: 6rem 2rem;
    background: white;
}

.timeline[b-c4n1jx5r43] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

    .timeline[b-c4n1jx5r43]::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, #667eea, #764ba2);
        border-radius: 3px;
    }

.timeline-item[b-c4n1jx5r43] {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker[b-c4n1jx5r43] {
    position: relative;
    width: 60px;
    flex-shrink: 0;
}

.marker-dot[b-c4n1jx5r43] {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #667eea;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 0;
    z-index: 2;
}

.marker-line[b-c4n1jx5r43] {
    position: absolute;
    left: 30px;
    top: 20px;
    bottom: -3rem;
    width: 3px;
    background: #e9ecef;
}

.timeline-item:last-child .marker-line[b-c4n1jx5r43] {
    display: none;
}

.timeline-content[b-c4n1jx5r43] {
    flex: 1;
    padding-left: 2rem;
    padding-bottom: 1rem;
}

.timeline-year[b-c4n1jx5r43] {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-title[b-c4n1jx5r43] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.timeline-description[b-c4n1jx5r43] {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.about-cta[b-c4n1jx5r43] {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-container[b-c4n1jx5r43] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2[b-c4n1jx5r43] {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p[b-c4n1jx5r43] {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions[b-c4n1jx5r43] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary[b-c4n1jx5r43] {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

    .btn-primary:hover[b-c4n1jx5r43] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        color: white;
    }

.btn-secondary[b-c4n1jx5r43] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

    .btn-secondary:hover[b-c4n1jx5r43] {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

.cta-visual[b-c4n1jx5r43] {
    display: flex;
    justify-content: center;
}

.visual-circle[b-c4n1jx5r43] {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: float-b-c4n1jx5r43 6s ease-in-out infinite;
}

@keyframes float-b-c4n1jx5r43 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mv-container[b-c4n1jx5r43] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-title[b-c4n1jx5r43] {
        font-size: 2.8rem;
    }

    .hero-stats[b-c4n1jx5r43] {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-item[b-c4n1jx5r43] {
        width: 100%;
        max-width: 300px;
    }

    .cta-container[b-c4n1jx5r43] {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-actions[b-c4n1jx5r43] {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero[b-c4n1jx5r43],
    .mission-vision-section[b-c4n1jx5r43],
    .values-section[b-c4n1jx5r43],
    .story-section[b-c4n1jx5r43],
    .about-cta[b-c4n1jx5r43] {
        padding: 4rem 1.5rem;
    }

    .hero-title[b-c4n1jx5r43] {
        font-size: 2.3rem;
    }

    .hero-description[b-c4n1jx5r43] {
        font-size: 1.1rem;
    }

    .mv-card[b-c4n1jx5r43] {
        padding: 2rem;
    }

    .card-header[b-c4n1jx5r43] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

        .card-header h2[b-c4n1jx5r43] {
            font-size: 1.8rem;
        }

    .section-title[b-c4n1jx5r43] {
        font-size: 2.2rem;
    }

    .timeline[b-c4n1jx5r43]::before {
        left: 20px;
    }

    .timeline-marker[b-c4n1jx5r43] {
        width: 40px;
    }

    .marker-dot[b-c4n1jx5r43] {
        left: 10px;
    }

    .marker-line[b-c4n1jx5r43] {
        left: 20px;
    }

    .timeline-content[b-c4n1jx5r43] {
        padding-left: 1.5rem;
    }
}

@media (max-width: 576px) {
    .values-grid[b-c4n1jx5r43] {
        grid-template-columns: 1fr;
    }

    .cta-content h2[b-c4n1jx5r43] {
        font-size: 2.2rem;
    }

    .cta-actions[b-c4n1jx5r43] {
        flex-direction: column;
    }

    .btn-primary[b-c4n1jx5r43],
    .btn-secondary[b-c4n1jx5r43] {
        width: 100%;
        justify-content: center;
    }
}
/* /Pages/Contact.razor.rz.scp.css */
/* Contact Hero */
.contact-hero[b-01jplynxa4] {
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.hero-background[b-01jplynxa4] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 30% 30%, #667eea 0%, transparent 50%), radial-gradient(circle at 70% 70%, #764ba2 0%, transparent 50%);
    z-index: 0;
}

.hero-content[b-01jplynxa4] {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge[b-01jplynxa4] {
    display: inline-block;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title[b-01jplynxa4] {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description[b-01jplynxa4] {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Main Section */
.contact-main[b-01jplynxa4] {
    padding: 4rem 2rem;
    background: white;
}

.contact-container[b-01jplynxa4] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Methods */
.contact-methods[b-01jplynxa4] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card[b-01jplynxa4] {
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.primary-card[b-01jplynxa4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.secondary-card[b-01jplynxa4] {
    background: white;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

    .secondary-card h3[b-01jplynxa4],
    .secondary-card .card-description[b-01jplynxa4],
    .secondary-card .channel-label[b-01jplynxa4] {
        color: #2c3e50;
    }

.contact-card:hover[b-01jplynxa4] {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.card-icon[b-01jplynxa4] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.secondary-card .card-icon[b-01jplynxa4] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.contact-card h3[b-01jplynxa4] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-description[b-01jplynxa4] {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-channels[b-01jplynxa4] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-channel[b-01jplynxa4] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s;
}

    .contact-channel:hover[b-01jplynxa4] {
        background: rgba(255, 255, 255, 0.2);
    }

.secondary-card .contact-channel[b-01jplynxa4] {
    background: #f8f9fa;
    color: #495057;
}

    .secondary-card .contact-channel:hover[b-01jplynxa4] {
        background: #e9ecef;
    }

.channel-icon[b-01jplynxa4] {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.secondary-card .channel-icon[b-01jplynxa4] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.channel-content[b-01jplynxa4] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.channel-label[b-01jplynxa4] {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.channel-value[b-01jplynxa4] {
    font-size: 1rem;
    font-weight: 500;
}

.secondary-card .channel-value[b-01jplynxa4] {
    color: #667eea;
}

/* Response Time */
.response-time[b-01jplynxa4] {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.time-item[b-01jplynxa4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.time-duration[b-01jplynxa4] {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.time-label[b-01jplynxa4] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
    text-align: center;
}

/* Contact Form Section */
.contact-form-section[b-01jplynxa4] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-header[b-01jplynxa4] {
    text-align: center;
    margin-bottom: 1rem;
}

.form-icon[b-01jplynxa4] {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.form-header h2[b-01jplynxa4] {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-description[b-01jplynxa4] {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Google Form Card */
.google-form-card[b-01jplynxa4] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

    .google-form-card:hover[b-01jplynxa4] {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

.form-preview[b-01jplynxa4] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.preview-header[b-01jplynxa4] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.preview-dots[b-01jplynxa4] {
    display: flex;
    gap: 0.5rem;
}

.dot[b-01jplynxa4] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .dot.red[b-01jplynxa4] {
        background: #ff5f56;
    }

    .dot.yellow[b-01jplynxa4] {
        background: #ffbd2e;
    }

    .dot.green[b-01jplynxa4] {
        background: #27c93f;
    }

.preview-title[b-01jplynxa4] {
    font-weight: 500;
    color: #5f6368;
    font-size: 0.9rem;
}

.preview-content[b-01jplynxa4] {
    text-align: center;
}

.preview-logo[b-01jplynxa4] {
    font-size: 3rem;
    color: #4285F4;
    margin-bottom: 1rem;
}

.preview-content h4[b-01jplynxa4] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.preview-content p[b-01jplynxa4] {
    color: #6c757d;
    line-height: 1.5;
}

.form-action-btn[b-01jplynxa4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

    .form-action-btn:hover[b-01jplynxa4] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
        color: white;
    }

.form-features[b-01jplynxa4] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item[b-01jplynxa4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #5f6368;
    font-size: 0.9rem;
}

    .feature-item i[b-01jplynxa4] {
        font-size: 1rem;
    }

/* Alternative Contact */
.alt-contact-info[b-01jplynxa4] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

    .alt-contact-info h4[b-01jplynxa4] {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1rem;
        text-align: center;
    }

.alt-options[b-01jplynxa4] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.alt-option[b-01jplynxa4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .alt-option:hover[b-01jplynxa4] {
        background: #e9ecef;
        border-color: #667eea;
        color: #667eea;
    }

    .alt-option i[b-01jplynxa4] {
        font-size: 1.2rem;
    }

/* FAQ Section */
.contact-faq[b-01jplynxa4] {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.section-header[b-01jplynxa4] {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-title[b-01jplynxa4] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle[b-01jplynxa4] {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-grid[b-01jplynxa4] {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item[b-01jplynxa4] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

    .faq-item:hover[b-01jplynxa4] {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
    }

.faq-question[b-01jplynxa4] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .faq-question i[b-01jplynxa4] {
        color: #667eea;
        font-size: 1.5rem;
    }

    .faq-question h4[b-01jplynxa4] {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0;
    }

.faq-answer p[b-01jplynxa4] {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    padding-left: 3rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container[b-01jplynxa4] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title[b-01jplynxa4] {
        font-size: 2.5rem;
    }

    .contact-hero[b-01jplynxa4] {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-main[b-01jplynxa4],
    .contact-faq[b-01jplynxa4] {
        padding: 3rem 1.5rem;
    }

    .response-time[b-01jplynxa4] {
        flex-direction: column;
        gap: 1rem;
    }

    .alt-options[b-01jplynxa4] {
        grid-template-columns: 1fr;
    }

    .faq-answer p[b-01jplynxa4] {
        padding-left: 0;
    }

    .hero-title[b-01jplynxa4] {
        font-size: 2rem;
    }

    .hero-description[b-01jplynxa4] {
        font-size: 1.1rem;
    }

    .contact-card h3[b-01jplynxa4] {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-hero[b-01jplynxa4] {
        padding: 3rem 1rem;
    }

    .contact-main[b-01jplynxa4],
    .contact-faq[b-01jplynxa4] {
        padding: 2rem 1rem;
    }

    .contact-card[b-01jplynxa4] {
        padding: 1.5rem;
    }

    .google-form-card[b-01jplynxa4] {
        padding: 1.5rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Hero Section */
.hero-section[b-o80ovg2mej] {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-background[b-o80ovg2mej] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: -1;
}

.hero-content[b-o80ovg2mej] {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge[b-o80ovg2mej] {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title[b-o80ovg2mej] {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description[b-o80ovg2mej] {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions[b-o80ovg2mej] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary[b-o80ovg2mej] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

    .btn-primary:hover[b-o80ovg2mej] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        color: white;
    }

.btn-secondary[b-o80ovg2mej] {
    background: white;
    color: #667eea;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #667eea;
    transition: all 0.3s;
}

    .btn-secondary:hover[b-o80ovg2mej] {
        background: #667eea;
        color: white;
    }

.btn-large[b-o80ovg2mej] {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.hero-stats[b-o80ovg2mej] {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item[b-o80ovg2mej] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number[b-o80ovg2mej] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-label[b-o80ovg2mej] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Section Common */
.section-header[b-o80ovg2mej] {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-title[b-o80ovg2mej] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle[b-o80ovg2mej] {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Features Section */
.features-section[b-o80ovg2mej] {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.features-grid[b-o80ovg2mej] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card[b-o80ovg2mej] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .feature-card:hover[b-o80ovg2mej] {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

.feature-icon[b-o80ovg2mej] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title[b-o80ovg2mej] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-description[b-o80ovg2mej] {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-link[b-o80ovg2mej] {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

    .feature-link:hover[b-o80ovg2mej] {
        gap: 1rem;
    }

/* CTA Section */
.cta-section[b-o80ovg2mej] {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-container[b-o80ovg2mej] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title[b-o80ovg2mej] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description[b-o80ovg2mej] {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-image[b-o80ovg2mej] {
    display: flex;
    justify-content: center;
}
.cta-visual[b-o80ovg2mej] {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: float-b-o80ovg2mej 6s ease-in-out infinite;
}

@keyframes float-b-o80ovg2mej {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Clients Section */
.clients-section[b-o80ovg2mej] {
    padding: 5rem 2rem;
}

.clients-grid[b-o80ovg2mej] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.client-logo[b-o80ovg2mej] {
    height: 80px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s;
}

    .client-logo:hover[b-o80ovg2mej] {
        background: #e9ecef;
        transform: scale(1.05);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero-title[b-o80ovg2mej] {
        font-size: 2.5rem;
    }

    .hero-actions[b-o80ovg2mej] {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats[b-o80ovg2mej] {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-container[b-o80ovg2mej] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .features-grid[b-o80ovg2mej] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/PrivacyPolicy.razor.rz.scp.css */
/* Hero Section */
.privacy-hero[b-0vtub8e83p] {
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    overflow: hidden;
}

.hero-background[b-0vtub8e83p] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content[b-0vtub8e83p] {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge[b-0vtub8e83p] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title[b-0vtub8e83p] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description[b-0vtub8e83p] {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.last-updated[b-0vtub8e83p] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Main Content */
.privacy-content[b-0vtub8e83p] {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.container[b-0vtub8e83p] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

/* Table of Contents */
.toc-container[b-0vtub8e83p] {
    position: sticky;
    top: 2rem;
    height: fit-content;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.toc-title[b-0vtub8e83p] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.toc-links[b-0vtub8e83p] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .toc-links a[b-0vtub8e83p] {
        color: #495057;
        text-decoration: none;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s;
        font-weight: 500;
    }

        .toc-links a:hover[b-0vtub8e83p] {
            background: #f8f9fa;
            color: #667eea;
            transform: translateX(5px);
        }

/* Policy Sections */
.policy-sections[b-0vtub8e83p] {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.policy-section[b-0vtub8e83p] {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.section-header[b-0vtub8e83p] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.section-number[b-0vtub8e83p] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.section-header h2[b-0vtub8e83p] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.section-content[b-0vtub8e83p] {
    padding: 2.5rem;
}

    .section-content h3[b-0vtub8e83p] {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 2rem 0 1rem 0;
    }

        .section-content h3:first-child[b-0vtub8e83p] {
            margin-top: 0;
        }

    .section-content p[b-0vtub8e83p] {
        color: #495057;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

/* Info Table */
.info-table[b-0vtub8e83p] {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.table-header[b-0vtub8e83p] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #e9ecef;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #495057;
}

.table-row[b-0vtub8e83p] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

    .table-row:last-child[b-0vtub8e83p] {
        border-bottom: none;
    }

    .table-row:hover[b-0vtub8e83p] {
        background: #f1f3f4;
    }

.table-col[b-0vtub8e83p] {
    padding: 0.5rem;
}

/* Usage List */
.usage-list[b-0vtub8e83p] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-item[b-0vtub8e83p] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.usage-icon[b-0vtub8e83p] {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.usage-content h4[b-0vtub8e83p] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.usage-content p[b-0vtub8e83p] {
    margin: 0;
    color: #6c757d;
}

/* Protection Grid */
.protection-grid[b-0vtub8e83p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.protection-card[b-0vtub8e83p] {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s;
}

    .protection-card:hover[b-0vtub8e83p] {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.protection-icon[b-0vtub8e83p] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

    .protection-icon.encryption[b-0vtub8e83p] {
        background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    }

    .protection-icon.access[b-0vtub8e83p] {
        background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    }

    .protection-icon.backup[b-0vtub8e83p] {
        background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    }

    .protection-icon.audit[b-0vtub8e83p] {
        background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    }

.protection-card h4[b-0vtub8e83p] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.protection-card p[b-0vtub8e83p] {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Notice Box */
.notice-box[b-0vtub8e83p] {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    align-items: flex-start;
}

    .notice-box.warning[b-0vtub8e83p] {
        background: #fff3cd;
        border: 1px solid #ffeaa7;
    }

    .notice-box.info[b-0vtub8e83p] {
        background: #d1ecf1;
        border: 1px solid #bee5eb;
    }

    .notice-box.important[b-0vtub8e83p] {
        background: #f8d7da;
        border: 1px solid #f5c6cb;
    }

    .notice-box i[b-0vtub8e83p] {
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .notice-box.warning i[b-0vtub8e83p] {
        color: #856404;
    }

    .notice-box.info i[b-0vtub8e83p] {
        color: #0c5460;
    }

    .notice-box.important i[b-0vtub8e83p] {
        color: #721c24;
    }

.notice-content[b-0vtub8e83p] {
    flex: 1;
}

    .notice-content h5[b-0vtub8e83p] {
        margin: 0 0 0.5rem 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .notice-content p[b-0vtub8e83p] {
        margin: 0 0 1rem 0;
        color: inherit;
    }

.request-link[b-0vtub8e83p] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

    .request-link:hover[b-0vtub8e83p] {
        gap: 0.75rem;
    }

/* Sharing List */
.sharing-list[b-0vtub8e83p] {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

    .sharing-list li[b-0vtub8e83p] {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e9ecef;
        color: #495057;
    }

        .sharing-list li:last-child[b-0vtub8e83p] {
            border-bottom: none;
        }

        .sharing-list li strong[b-0vtub8e83p] {
            color: #2c3e50;
        }

/* Cookie Types */
.cookie-types[b-0vtub8e83p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-card[b-0vtub8e83p] {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

    .cookie-card.essential[b-0vtub8e83p] {
        background: #e3f2fd;
        border-color: #bbdefb;
    }

    .cookie-card.functional[b-0vtub8e83p] {
        background: #f3e5f5;
        border-color: #e1bee7;
    }

    .cookie-card.analytics[b-0vtub8e83p] {
        background: #e8f5e8;
        border-color: #c8e6c9;
    }

.cookie-header[b-0vtub8e83p] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-badge[b-0vtub8e83p] {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-card.essential .cookie-badge[b-0vtub8e83p] {
    background: #2196F3;
    color: white;
}

.cookie-card.functional .cookie-badge[b-0vtub8e83p] {
    background: #9C27B0;
    color: white;
}

.cookie-card.analytics .cookie-badge[b-0vtub8e83p] {
    background: #4CAF50;
    color: white;
}

.cookie-header h4[b-0vtub8e83p] {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.cookie-card p[b-0vtub8e83p] {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
}

.cookie-control[b-0vtub8e83p] {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

    .cookie-control h4[b-0vtub8e83p] {
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .cookie-control p[b-0vtub8e83p] {
        margin-bottom: 1.5rem;
        color: #6c757d;
    }

.cookie-btn[b-0vtub8e83p] {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .cookie-btn:hover[b-0vtub8e83p] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

/* Rights Grid */
.rights-grid[b-0vtub8e83p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item[b-0vtub8e83p] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.right-icon[b-0vtub8e83p] {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.right-content h4[b-0vtub8e83p] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.right-content p[b-0vtub8e83p] {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Changes Timeline */
.changes-timeline[b-0vtub8e83p] {
    margin: 2rem 0;
    position: relative;
    padding-left: 2rem;
}

    .changes-timeline[b-0vtub8e83p]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #e9ecef;
    }

.change-item[b-0vtub8e83p] {
    position: relative;
    padding: 0 0 2rem 2rem;
}

    .change-item:last-child[b-0vtub8e83p] {
        padding-bottom: 0;
    }

    .change-item[b-0vtub8e83p]::before {
        content: '';
        position: absolute;
        left: -8px;
        top: 0;
        width: 14px;
        height: 14px;
        background: #667eea;
        border-radius: 50%;
    }

.change-date[b-0vtub8e83p] {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.change-content h5[b-0vtub8e83p] {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.change-content p[b-0vtub8e83p] {
    margin: 0;
    color: #6c757d;
}

/* Contact Options */
.contact-options[b-0vtub8e83p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-option[b-0vtub8e83p] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

    .contact-option:hover[b-0vtub8e83p] {
        background: white;
        border-color: #667eea;
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    }

.contact-icon[b-0vtub8e83p] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info h5[b-0vtub8e83p] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.contact-info p[b-0vtub8e83p] {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* FAQ Section */
.privacy-faq[b-0vtub8e83p] {
    padding: 4rem 2rem;
    background: white;
}

    .privacy-faq .container[b-0vtub8e83p] {
        display: block;
        max-width: 1200px;
        margin: 0 auto;
    }

.faq-title[b-0vtub8e83p] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-grid[b-0vtub8e83p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.faq-item[b-0vtub8e83p] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #667eea;
}

    .faq-item h4[b-0vtub8e83p] {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 1rem 0;
    }

    .faq-item p[b-0vtub8e83p] {
        margin: 0;
        color: #495057;
        line-height: 1.6;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .container[b-0vtub8e83p] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .toc-container[b-0vtub8e83p] {
        position: static;
    }

    .faq-grid[b-0vtub8e83p] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-hero[b-0vtub8e83p] {
        padding: 3rem 1.5rem;
    }

    .privacy-content[b-0vtub8e83p],
    .privacy-faq[b-0vtub8e83p] {
        padding: 3rem 1.5rem;
    }

    .hero-title[b-0vtub8e83p] {
        font-size: 2.3rem;
    }

    .section-content[b-0vtub8e83p] {
        padding: 1.5rem;
    }

    .info-table[b-0vtub8e83p],
    .protection-grid[b-0vtub8e83p],
    .rights-grid[b-0vtub8e83p],
    .contact-options[b-0vtub8e83p] {
        grid-template-columns: 1fr;
    }

    .table-header[b-0vtub8e83p],
    .table-row[b-0vtub8e83p] {
        grid-template-columns: 1fr;
    }

    .cookie-types[b-0vtub8e83p] {
        grid-template-columns: 1fr;
    }

    .faq-grid[b-0vtub8e83p] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .usage-item[b-0vtub8e83p],
    .right-item[b-0vtub8e83p],
    .contact-option[b-0vtub8e83p] {
        flex-direction: column;
        text-align: center;
    }

    .section-header[b-0vtub8e83p] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-title[b-0vtub8e83p] {
        font-size: 2rem;
    }

    .faq-title[b-0vtub8e83p] {
        font-size: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
}
/* /Pages/Products.razor.rz.scp.css */
/* Hero Section */
.products-hero[b-8thhq95r5x] {
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    overflow: hidden;
}

.hero-background[b-8thhq95r5x] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.floating-shape[b-8thhq95r5x] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(20px);
}

    .floating-shape.s1[b-8thhq95r5x] {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }

    .floating-shape.s2[b-8thhq95r5x] {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: 10%;
    }

    .floating-shape.s3[b-8thhq95r5x] {
        width: 150px;
        height: 150px;
        top: 30%;
        right: -75px;
    }

.hero-content[b-8thhq95r5x] {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge[b-8thhq95r5x] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title[b-8thhq95r5x] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description[b-8thhq95r5x] {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.product-tags[b-8thhq95r5x] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-tag[b-8thhq95r5x] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}

    .product-tag:hover[b-8thhq95r5x] {
        background: rgba(255, 255, 255, 0.2);
    }

/* Products Main */
.products-main[b-8thhq95r5x] {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.products-container[b-8thhq95r5x] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Product Cards */
.product-card[b-8thhq95r5x] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .product-card:hover[b-8thhq95r5x] {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

    .product-card.featured[b-8thhq95r5x] {
        border: 2px solid #667eea;
    }

    .product-card.coming-soon[b-8thhq95r5x] {
        position: relative;
        opacity: 0.95;
    }

.product-badge[b-8thhq95r5x] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.product-header[b-8thhq95r5x] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-icon[b-8thhq95r5x] {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

    .product-icon.media[b-8thhq95r5x] {
        background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    }

    .product-icon.soon[b-8thhq95r5x] {
        background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    }

.product-titles[b-8thhq95r5x] {
    flex: 1;
}

    .product-titles h2[b-8thhq95r5x] {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
        line-height: 1.2;
    }

.product-subtitle[b-8thhq95r5x] {
    display: block;
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.product-description[b-8thhq95r5x] {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.product-features[b-8thhq95r5x] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item[b-8thhq95r5x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
}

    .feature-item i[b-8thhq95r5x] {
        font-size: 1rem;
    }

.product-actions[b-8thhq95r5x] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary[b-8thhq95r5x], .btn-secondary[b-8thhq95r5x] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary[b-8thhq95r5x] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

    .btn-primary:hover[b-8thhq95r5x] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .btn-primary.disabled[b-8thhq95r5x] {
        opacity: 0.6;
        cursor: not-allowed;
    }

        .btn-primary.disabled:hover[b-8thhq95r5x] {
            transform: none;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

.btn-secondary[b-8thhq95r5x] {
    background: white;
    color: #495057;
    border: 2px solid #dee2e6;
}

    .btn-secondary:hover[b-8thhq95r5x] {
        border-color: #667eea;
        color: #667eea;
        background: #f8f9fa;
    }

.product-footer[b-8thhq95r5x] {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-tech[b-8thhq95r5x] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag[b-8thhq95r5x] {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge[b-8thhq95r5x] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

    .status-badge.live[b-8thhq95r5x] {
        background: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .status-badge.soon[b-8thhq95r5x] {
        background: rgba(255, 152, 0, 0.1);
        color: #FF9800;
    }

    .status-badge i[b-8thhq95r5x] {
        font-size: 0.6rem;
    }

/* Coming Soon Overlay */
.coming-soon-overlay[b-8thhq95r5x] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 2;
}

.overlay-content[b-8thhq95r5x] {
    text-align: center;
    padding: 2rem;
}

    .overlay-content i[b-8thhq95r5x] {
        font-size: 3rem;
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .overlay-content h4[b-8thhq95r5x] {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .overlay-content p[b-8thhq95r5x] {
        color: #6c757d;
        max-width: 300px;
        margin: 0 auto;
    }

/* Comparison Section */
.comparison-section[b-8thhq95r5x] {
    padding: 5rem 2rem;
    background: white;
}

.section-header[b-8thhq95r5x] {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-title[b-8thhq95r5x] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle[b-8thhq95r5x] {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.comparison-table[b-8thhq95r5x] {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.table-header[b-8thhq95r5x] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
}

.table-col[b-8thhq95r5x] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-col[b-8thhq95r5x] {
    font-weight: 600;
    text-align: left;
    color: #2c3e50;
}

.product-name[b-8thhq95r5x] {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.product-category[b-8thhq95r5x] {
    font-size: 0.85rem;
    opacity: 0.8;
}

.table-row[b-8thhq95r5x] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

    .table-row:last-child[b-8thhq95r5x] {
        border-bottom: none;
    }

    .table-row:nth-child(even)[b-8thhq95r5x] {
        background: #f8f9fa;
    }

    .table-row .table-col[b-8thhq95r5x] {
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

/* CTA Section */
.products-cta[b-8thhq95r5x] {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-container[b-8thhq95r5x] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2[b-8thhq95r5x] {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p[b-8thhq95r5x] {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions[b-8thhq95r5x] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large[b-8thhq95r5x] {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-visual[b-8thhq95r5x] {
    display: flex;
    justify-content: center;
}

.visual-icons[b-8thhq95r5x] {
    display: flex;
    gap: 1.5rem;
}

.icon-circle[b-8thhq95r5x] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: float-b-8thhq95r5x 3s ease-in-out infinite;
}

    .icon-circle:nth-child(2)[b-8thhq95r5x] {
        animation-delay: 0.5s;
    }

    .icon-circle:nth-child(3)[b-8thhq95r5x] {
        animation-delay: 1s;
    }

@keyframes float-b-8thhq95r5x {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Demo Modal */
.demo-modal[b-8thhq95r5x] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-backdrop[b-8thhq95r5x] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content[b-8thhq95r5x] {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn-b-8thhq95r5x 0.3s ease-out;
}

@keyframes modalSlideIn-b-8thhq95r5x {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-8thhq95r5x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

    .modal-header h3[b-8thhq95r5x] {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
    }

.modal-close[b-8thhq95r5x] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 6px;
    transition: background 0.3s;
}

    .modal-close:hover[b-8thhq95r5x] {
        background: #f8f9fa;
    }

.modal-body[b-8thhq95r5x] {
    padding: 2rem;
}

.demo-placeholder[b-8thhq95r5x] {
    text-align: center;
    padding: 2rem;
}

    .demo-placeholder i[b-8thhq95r5x] {
        font-size: 4rem;
        color: #667eea;
        margin-bottom: 1.5rem;
    }

    .demo-placeholder h4[b-8thhq95r5x] {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .demo-placeholder p[b-8thhq95r5x] {
        color: #6c757d;
        line-height: 1.6;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .products-container[b-8thhq95r5x] {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-title[b-8thhq95r5x] {
        font-size: 2.8rem;
    }

    .cta-container[b-8thhq95r5x] {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-actions[b-8thhq95r5x] {
        justify-content: center;
    }

    .visual-icons[b-8thhq95r5x] {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .products-hero[b-8thhq95r5x],
    .products-main[b-8thhq95r5x],
    .comparison-section[b-8thhq95r5x],
    .products-cta[b-8thhq95r5x] {
        padding: 3rem 1.5rem;
    }

    .hero-title[b-8thhq95r5x] {
        font-size: 2.3rem;
    }

    .hero-description[b-8thhq95r5x] {
        font-size: 1.1rem;
    }

    .product-card[b-8thhq95r5x] {
        padding: 2rem;
    }

    .products-container[b-8thhq95r5x] {
        grid-template-columns: 1fr;
    }

    .product-actions[b-8thhq95r5x] {
        flex-direction: column;
    }

    .table-header[b-8thhq95r5x],
    .table-row[b-8thhq95r5x] {
        grid-template-columns: 1fr;
    }

    .feature-col[b-8thhq95r5x] {
        font-weight: 600;
        padding: 0.5rem 0;
        border-bottom: 1px solid #e9ecef;
    }

    .table-col[b-8thhq95r5x] {
        padding: 0.75rem;
        flex-direction: row;
        justify-content: space-between;
    }

        .table-col:not(.feature-col)[b-8thhq95r5x]::before {
            content: attr(data-label);
            font-weight: 500;
            color: #6c757d;
        }

    .section-title[b-8thhq95r5x] {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-header[b-8thhq95r5x] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .product-footer[b-8thhq95r5x] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cta-content h2[b-8thhq95r5x] {
        font-size: 2rem;
    }

    .cta-actions[b-8thhq95r5x] {
        flex-direction: column;
    }

    .btn-primary[b-8thhq95r5x],
    .btn-secondary[b-8thhq95r5x] {
        width: 100%;
    }

    .visual-icons[b-8thhq95r5x] {
        flex-direction: column;
        align-items: center;
    }
}
/* /Pages/Services.razor.rz.scp.css */
/* Hero Section */
.services-hero[b-0t5f7ma2ke] {
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    overflow: hidden;
}

.hero-background[b-0t5f7ma2ke] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.animated-shape[b-0t5f7ma2ke] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(20px);
    animation: float-b-0t5f7ma2ke 6s ease-in-out infinite;
}

.shape1[b-0t5f7ma2ke] {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape2[b-0t5f7ma2ke] {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 10%;
    animation-delay: 2s;
}

.shape3[b-0t5f7ma2ke] {
    width: 150px;
    height: 150px;
    top: 30%;
    right: -75px;
    animation-delay: 4s;
}

@keyframes float-b-0t5f7ma2ke {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content[b-0t5f7ma2ke] {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge[b-0t5f7ma2ke] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title[b-0t5f7ma2ke] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description[b-0t5f7ma2ke] {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-stats[b-0t5f7ma2ke] {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item[b-0t5f7ma2ke] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.stat-value[b-0t5f7ma2ke] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
}

.stat-label[b-0t5f7ma2ke] {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    text-align: center;
}

/* Services Tabs */
.services-tabs-section[b-0t5f7ma2ke] {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.tabs-container[b-0t5f7ma2ke] {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-header[b-0t5f7ma2ke] {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title[b-0t5f7ma2ke] {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle[b-0t5f7ma2ke] {
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.tabs-navigation[b-0t5f7ma2ke] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn[b-0t5f7ma2ke] {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s;
}

    .tab-btn:hover[b-0t5f7ma2ke] {
        border-color: #667eea;
        color: #667eea;
    }

    .tab-btn.active[b-0t5f7ma2ke] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .tab-btn i[b-0t5f7ma2ke] {
        font-size: 1.2rem;
    }

.tab-content[b-0t5f7ma2ke] {
    display: none;
}

    .tab-content.active[b-0t5f7ma2ke] {
        display: block;
        animation: fadeIn-b-0t5f7ma2ke 0.5s ease-out;
    }

@keyframes fadeIn-b-0t5f7ma2ke {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Grid */
.services-grid[b-0t5f7ma2ke] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card[b-0t5f7ma2ke] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .service-card.featured[b-0t5f7ma2ke] {
        border: 2px solid #667eea;
    }

    .service-card:hover[b-0t5f7ma2ke] {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

.service-badge[b-0t5f7ma2ke] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.service-header[b-0t5f7ma2ke] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon[b-0t5f7ma2ke] {
    width: 70px;
    height: 70px;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

    .service-icon.dev[b-0t5f7ma2ke] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .service-icon.mobile[b-0t5f7ma2ke] {
        background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    }

    .service-icon.consulting[b-0t5f7ma2ke] {
        background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    }

    .service-icon.cloud[b-0t5f7ma2ke] {
        background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    }

    .service-icon.support[b-0t5f7ma2ke] {
        background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    }

    .service-icon.maintenance[b-0t5f7ma2ke] {
        background: linear-gradient(135deg, #607D8B 0%, #78909C 100%);
    }

.service-header h3[b-0t5f7ma2ke] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.service-description[b-0t5f7ma2ke] {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.service-features[b-0t5f7ma2ke] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag[b-0t5f7ma2ke] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

    .feature-tag i[b-0t5f7ma2ke] {
        color: #4CAF50;
    }

.service-footer[b-0t5f7ma2ke] {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-tech[b-0t5f7ma2ke] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag[b-0t5f7ma2ke] {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-action[b-0t5f7ma2ke] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

    .service-action:hover[b-0t5f7ma2ke] {
        gap: 1rem;
    }

/* Process Section */
.process-section[b-0t5f7ma2ke] {
    padding: 5rem 2rem;
    background: white;
}

.process-timeline[b-0t5f7ma2ke] {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.process-step[b-0t5f7ma2ke] {
    text-align: center;
    padding: 2rem;
    position: relative;
}

    .process-step:not(:last-child)[b-0t5f7ma2ke]::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: #e9ecef;
        display: none;
    }

.step-number[b-0t5f7ma2ke] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-content h3[b-0t5f7ma2ke] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.step-content p[b-0t5f7ma2ke] {
    color: #6c757d;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section[b-0t5f7ma2ke] {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.pricing-cards[b-0t5f7ma2ke] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 40px;
}

.pricing-card[b-0t5f7ma2ke] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .pricing-card.featured[b-0t5f7ma2ke] {
        transform: scale(1.05);
        border: 2px solid #667eea;
    }

    .pricing-card:hover[b-0t5f7ma2ke] {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .pricing-card.featured:hover[b-0t5f7ma2ke] {
        transform: scale(1.05) translateY(-5px);
    }

.pricing-badge[b-0t5f7ma2ke] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.pricing-header[b-0t5f7ma2ke] {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

    .pricing-header h3[b-0t5f7ma2ke] {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

.pricing-price[b-0t5f7ma2ke] {
    margin-bottom: 1rem;
}

.price-amount[b-0t5f7ma2ke] {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-period[b-0t5f7ma2ke] {
    color: #6c757d;
    font-size: 1rem;
}

.pricing-description[b-0t5f7ma2ke] {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-features[b-0t5f7ma2ke] {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

    .pricing-features li[b-0t5f7ma2ke] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        color: #495057;
    }

        .pricing-features li i[b-0t5f7ma2ke] {
            font-size: 1rem;
        }

        .pricing-features li.not-included[b-0t5f7ma2ke] {
            color: #adb5bd;
        }

            .pricing-features li.not-included i[b-0t5f7ma2ke] {
                color: #adb5bd;
            }

.pricing-btn[b-0t5f7ma2ke] {
    display: block;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

    .pricing-btn:hover[b-0t5f7ma2ke] {
        background: #e9ecef;
        color: #495057;
    }

    .pricing-btn.primary[b-0t5f7ma2ke] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

        .pricing-btn.primary:hover[b-0t5f7ma2ke] {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            color: white;
        }

/* CTA Section */
.services-cta[b-0t5f7ma2ke] {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-container[b-0t5f7ma2ke] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2[b-0t5f7ma2ke] {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p[b-0t5f7ma2ke] {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions[b-0t5f7ma2ke] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary[b-0t5f7ma2ke], .btn-secondary[b-0t5f7ma2ke] {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-primary[b-0t5f7ma2ke] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

    .btn-primary:hover[b-0t5f7ma2ke] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        color: white;
    }

.btn-secondary[b-0t5f7ma2ke] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

    .btn-secondary:hover[b-0t5f7ma2ke] {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

.btn-large[b-0t5f7ma2ke] {
    padding: 1.2rem 2.5rem;
}

.cta-visual[b-0t5f7ma2ke] {
    display: flex;
    justify-content: center;
}

.visual-element[b-0t5f7ma2ke] {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: pulse-b-0t5f7ma2ke 2s ease-in-out infinite;
}

@keyframes pulse-b-0t5f7ma2ke {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid[b-0t5f7ma2ke] {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .pricing-card.featured[b-0t5f7ma2ke] {
        transform: none;
    }

        .pricing-card.featured:hover[b-0t5f7ma2ke] {
            transform: translateY(-5px);
        }
}

@media (max-width: 992px) {
    .hero-title[b-0t5f7ma2ke] {
        font-size: 2.8rem;
    }

    .cta-container[b-0t5f7ma2ke] {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-actions[b-0t5f7ma2ke] {
        justify-content: center;
    }

    .process-step:not(:last-child)[b-0t5f7ma2ke]::after {
        display: none;
    }

    .process-timeline[b-0t5f7ma2ke] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero[b-0t5f7ma2ke],
    .services-tabs-section[b-0t5f7ma2ke],
    .process-section[b-0t5f7ma2ke],
    .pricing-section[b-0t5f7ma2ke],
    .services-cta[b-0t5f7ma2ke] {
        padding: 3rem 1.5rem;
    }

    .hero-title[b-0t5f7ma2ke] {
        font-size: 2.3rem;
    }

    .hero-description[b-0t5f7ma2ke] {
        font-size: 1.1rem;
    }

    .tabs-navigation[b-0t5f7ma2ke] {
        flex-direction: column;
    }

    .tab-btn[b-0t5f7ma2ke] {
        width: 100%;
        justify-content: center;
    }

    .services-grid[b-0t5f7ma2ke],
    .pricing-cards[b-0t5f7ma2ke] {
        grid-template-columns: 1fr;
    }

    .service-card[b-0t5f7ma2ke],
    .pricing-card[b-0t5f7ma2ke] {
        padding: 2rem;
    }

    .section-title[b-0t5f7ma2ke] {
        font-size: 2.2rem;
    }

    .service-footer[b-0t5f7ma2ke] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .service-tech[b-0t5f7ma2ke] {
        width: 100%;
        justify-content: flex-start;
    }

    .service-action[b-0t5f7ma2ke] {
        align-self: flex-end;
    }

    .hero-stats[b-0t5f7ma2ke] {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .service-header[b-0t5f7ma2ke] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-icon[b-0t5f7ma2ke] {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-content h2[b-0t5f7ma2ke] {
        font-size: 2rem;
    }

    .cta-actions[b-0t5f7ma2ke] {
        flex-direction: column;
    }

    .btn-primary[b-0t5f7ma2ke],
    .btn-secondary[b-0t5f7ma2ke] {
        width: 100%;
        justify-content: center;
    }

    .price-amount[b-0t5f7ma2ke] {
        font-size: 2.5rem;
    }
}
/* /Pages/TermsOfService.razor.rz.scp.css */
/* Hero Section */
.terms-hero[b-50i0he9mof] {
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    overflow: hidden;
}

.hero-background[b-50i0he9mof] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content[b-50i0he9mof] {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge[b-50i0he9mof] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title[b-50i0he9mof] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description[b-50i0he9mof] {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.last-updated[b-50i0he9mof] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Main Content */
.terms-content[b-50i0he9mof] {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.container[b-50i0he9mof] {
    max-width: 1200px;
    margin: 0 auto;
}

/* Quick Info */
.quick-info[b-50i0he9mof] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card[b-50i0he9mof] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-icon[b-50i0he9mof] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-card:nth-child(2) .info-icon[b-50i0he9mof] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.info-content h4[b-50i0he9mof] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
}

.info-content p[b-50i0he9mof] {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Terms Sections */
.terms-sections[b-50i0he9mof] {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.terms-section[b-50i0he9mof] {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.section-header[b-50i0he9mof] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.section-number[b-50i0he9mof] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.section-header h2[b-50i0he9mof] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.section-content[b-50i0he9mof] {
    padding: 2.5rem;
}

    .section-content h3[b-50i0he9mof] {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 2rem 0 1rem 0;
    }

        .section-content h3:first-child[b-50i0he9mof] {
            margin-top: 0;
        }

    .section-content p[b-50i0he9mof] {
        color: #495057;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

/* Definitions */
.definitions[b-50i0he9mof] {
    margin: 2rem 0;
}

.definition-list[b-50i0he9mof] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.definition-item[b-50i0he9mof] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

    .definition-item h4[b-50i0he9mof] {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }

    .definition-item p[b-50i0he9mof] {
        margin: 0;
        color: #6c757d;
        font-size: 0.95rem;
    }

/* Rules Grid */
.rules-grid[b-50i0he9mof] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.rule-card[b-50i0he9mof] {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

    .rule-card:hover[b-50i0he9mof] {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }

.rule-icon[b-50i0he9mof] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.rule-card:nth-child(2) .rule-icon[b-50i0he9mof] {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.rule-card:nth-child(3) .rule-icon[b-50i0he9mof] {
    background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
}

.rule-card:nth-child(4) .rule-icon[b-50i0he9mof] {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
}

.rule-card h4[b-50i0he9mof] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.rule-card p[b-50i0he9mof] {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Permissions List */
.permissions-list[b-50i0he9mof] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.permission-item[b-50i0he9mof] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
}

    .permission-item.allowed[b-50i0he9mof] {
        background: #e8f5e8;
        border: 1px solid #c8e6c9;
    }

    .permission-item.prohibited[b-50i0he9mof] {
        background: #ffebee;
        border: 1px solid #ffcdd2;
    }

.permission-icon[b-50i0he9mof] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.permission-item.allowed .permission-icon[b-50i0he9mof] {
    background: #4CAF50;
    color: white;
}

.permission-item.prohibited .permission-icon[b-50i0he9mof] {
    background: #f44336;
    color: white;
}

.permission-content h4[b-50i0he9mof] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.permission-content p[b-50i0he9mof] {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
}

/* Intellectual Property */
.intellectual-property[b-50i0he9mof] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.ip-card[b-50i0he9mof] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.ip-icon[b-50i0he9mof] {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.ip-content h4[b-50i0he9mof] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.ip-content p[b-50i0he9mof] {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Liability Box */
.liability-box[b-50i0he9mof] {
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

    .liability-box.warning[b-50i0he9mof] {
        background: #fff3cd;
        border: 1px solid #ffeaa7;
    }

.liability-header[b-50i0he9mof] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .liability-header i[b-50i0he9mof] {
        font-size: 1.5rem;
        color: #856404;
    }

    .liability-header h4[b-50i0he9mof] {
        font-size: 1.3rem;
        font-weight: 600;
        color: #856404;
        margin: 0;
    }

.liability-box p[b-50i0he9mof] {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

/* Limitations List */
.limitations[b-50i0he9mof] {
    margin: 2rem 0;
}

.limitations-list[b-50i0he9mof] {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

    .limitations-list li[b-50i0he9mof] {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e9ecef;
        color: #495057;
        position: relative;
        padding-left: 2.5rem;
    }

        .limitations-list li:last-child[b-50i0he9mof] {
            border-bottom: none;
        }

        .limitations-list li[b-50i0he9mof]::before {
            content: '⚠️';
            position: absolute;
            left: 0;
            top: 1rem;
        }

/* Termination Process */
.termination-process[b-50i0he9mof] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.process-step[b-50i0he9mof] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

    .process-step:not(:last-child)[b-50i0he9mof]::after {
        content: '';
        position: absolute;
        left: 25px;
        top: 50px;
        bottom: -2rem;
        width: 2px;
        background: #e9ecef;
    }

.step-number[b-50i0he9mof] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.step-content h4[b-50i0he9mof] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.step-content p[b-50i0he9mof] {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Governing Law */
.governing-law[b-50i0he9mof] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.law-card[b-50i0he9mof] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.law-icon[b-50i0he9mof] {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.law-content h4[b-50i0he9mof] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.law-content p[b-50i0he9mof] {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Changes History */
.changes-history[b-50i0he9mof] {
    margin: 2rem 0;
}

.changes-timeline[b-50i0he9mof] {
    position: relative;
    padding-left: 2rem;
    margin-top: 1.5rem;
}

    .changes-timeline[b-50i0he9mof]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #e9ecef;
    }

.change-item[b-50i0he9mof] {
    position: relative;
    padding: 0 0 2rem 2rem;
}

    .change-item:last-child[b-50i0he9mof] {
        padding-bottom: 0;
    }

    .change-item[b-50i0he9mof]::before {
        content: '';
        position: absolute;
        left: -8px;
        top: 0;
        width: 14px;
        height: 14px;
        background: #667eea;
        border-radius: 50%;
    }

.change-date[b-50i0he9mof] {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.change-content h5[b-50i0he9mof] {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.change-content p[b-50i0he9mof] {
    margin: 0;
    color: #6c757d;
}

/* Contact Methods */
.contact-methods[b-50i0he9mof] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method[b-50i0he9mof] {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

    .contact-method h4[b-50i0he9mof] {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 1rem 0;
    }

.contact-details p[b-50i0he9mof] {
    margin: 0 0 0.75rem 0;
    color: #495057;
}

    .contact-details p strong[b-50i0he9mof] {
        color: #2c3e50;
    }

.contact-link[b-50i0he9mof] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

    .contact-link:hover[b-50i0he9mof] {
        gap: 0.75rem;
    }

/* Acceptance Section */
.acceptance-section[b-50i0he9mof] {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-radius: 16px;
    text-align: center;
}

.acceptance-content h3[b-50i0he9mof] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.acceptance-content p[b-50i0he9mof] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.acceptance-actions[b-50i0he9mof] {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.accept-btn[b-50i0he9mof], .decline-btn[b-50i0he9mof] {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.accept-btn[b-50i0he9mof] {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

    .accept-btn:hover[b-50i0he9mof] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        color: white;
    }

.decline-btn[b-50i0he9mof] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

    .decline-btn:hover[b-50i0he9mof] {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .quick-info[b-50i0he9mof],
    .definition-list[b-50i0he9mof],
    .rules-grid[b-50i0he9mof],
    .intellectual-property[b-50i0he9mof],
    .governing-law[b-50i0he9mof],
    .contact-methods[b-50i0he9mof] {
        grid-template-columns: 1fr;
    }

    .hero-title[b-50i0he9mof] {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .terms-hero[b-50i0he9mof] {
        padding: 3rem 1.5rem;
    }

    .terms-content[b-50i0he9mof] {
        padding: 3rem 1.5rem;
    }

    .section-content[b-50i0he9mof] {
        padding: 1.5rem;
    }

    .hero-title[b-50i0he9mof] {
        font-size: 2rem;
    }

    .process-step[b-50i0he9mof] {
        flex-direction: column;
        gap: 1rem;
    }

        .process-step:not(:last-child)[b-50i0he9mof]::after {
            left: 25px;
            top: 100px;
        }

    .acceptance-section[b-50i0he9mof] {
        padding: 2rem 1.5rem;
    }

    .acceptance-actions[b-50i0he9mof] {
        flex-direction: column;
        align-items: center;
    }

    .accept-btn[b-50i0he9mof],
    .decline-btn[b-50i0he9mof] {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .info-card[b-50i0he9mof],
    .ip-card[b-50i0he9mof],
    .law-card[b-50i0he9mof] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .permission-item[b-50i0he9mof] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .section-header[b-50i0he9mof] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .acceptance-content h3[b-50i0he9mof] {
        font-size: 1.5rem;
    }
}
