body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }

/* Page Transitions */
.page-section { display: none; animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.page-section.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; border: 2px solid #f1f5f9; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Mobile Menu Animation */
#mobile-menu { transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; }

/* Toast Notification */
#toast {
    visibility: hidden;
    min-width: 250px; 
    background-color: #0d9488; /* Teal-600 */
    color: #fff; 
    text-align: center; 
    border-radius: 8px; 
    padding: 16px; 
    position: fixed; 
    z-index: 100; 
    left: 50%; 
    bottom: 30px; 
    transform: translateX(-50%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}

#toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

/* Modal Styles */
#policy-modal {
    transition: opacity 0.3s ease;
}

/* Form styling extras */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}