:root {
    --background-color: #ffffff;
    --text-color: #374151;
    --primary-color: #007bff;
    --card-background: #f8f9fa;
    --border-color: #dee2e6;
    --dark-background: #121212;
    --dark-text: #e0e0e0;
    --dark-card: #1e1e1e;
    --dark-border: #333333;
    --text-secondary-color: #6b7280;
    --primary-hover-color: #0056b3;
    --card-background: #ffffff;
    --danger-color: #ef4444;
    --danger-hover-color: #dc2626;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
}
html body {
    scroll-behavior: smooth;
    overflow-x: clip
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
header {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
}
.logo .logo-main {
    color: #000000;
}
.logo .logo-secondary {
    color: #888888;
}
.nav-page-links {
    display: none;
    gap: 2rem;
}

body.is-landing-page .nav-page-links {
    display: flex;
}

.nav-page-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-weight: 500;
}
.linkstyle {
    text-decoration: none;
    color: #3b82f6;
    transition: color 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.linkstyle:hover {
    color: #2563eb;
    text-decoration: underline;
}
.nav-page-links a:hover {
    color: var(--primary-color);
}
.nav-links button {
    background: none; border: none; cursor: pointer;
    color: var(--text-color); font-size: 1rem; margin-left: 1.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}
.nav-links button:hover { color: var(--primary-color); }
.nav-links button.button {
    background-color: var(--primary-color); color: white;
    padding: 0.5rem 1.5rem; border-radius: 20px;
    transition: background-color 0.3s ease;
}
.nav-links button.button:hover { background-color: #0056b3; color: white; }
.hero {
    text-align: center; padding: 5rem 1rem;
}
.hero h1 {
    font-size: 3.2rem; margin-bottom: 1rem;
}
.hero p {
    font-size: 1.25rem; margin-bottom: 2rem; color: #6c757d;
    max-width: 700px; margin-left: auto; margin-right: auto;
}
/* --- FINAL Animation Styles --- */
.hero h1 .highlight-box {
    display: inline-block;
    min-width: 500px; /* Fixed width to prevent layout shifts */
    text-align: center;
    background-color: var(--primary-color); /* Blue background */
    color: var(--dark-text); /* Grey text */
    padding: 0.0rem 0.3rem;
    border-radius: 8px;
    vertical-align: bottom; /* Aligns box correctly with surrounding text */
}
.hero h1 #animated-text {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.hero h1 #animated-text.fading-out {
    opacity: 0;
}
/* --- End of Final Animation Styles --- */
.checkbox-container {
    display: flex;
    align-items: baseline;
    gap: 0.5px; 
}
.section { 
    padding: 4rem 1rem; 
    scroll-margin-top: 80px; 
}
.section h2 {
    font-size: 2.5rem; margin-bottom: 1rem; text-align: center;
}
.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.code-comparison {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; 
    text-align: left;
}
.code-column {
    flex: 1;
    min-width: 450px; 
    max-width: 600px;
}
.code-column h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}
.code-column p {
    color: #6c757d;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}
.code-block {
    border-radius: 8px;
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 0.78rem;
    overflow: hidden;
}
.code-block pre {
    margin: 0;
    padding: 1.5rem !important;
    border-radius: 8px;
    background-color: #2d2d2d;
}
.highlight-line {
    background: rgba(255, 230, 100, 0.2);
    display: block;
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
    border-left: 3px solid #ffe664;
}

.enterprise-section {
    background-color: var(--dark-background);
    color: var(--dark-text);
    border-radius: 16px;
    padding: 4rem;
    margin: 4rem 0;
}
.enterprise-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}
.enterprise-section .section-subtitle {
    color: #a0a0a0;
}
.enterprise-content {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}
.enterprise-features {
    flex: 2;
}
.enterprise-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.enterprise-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.enterprise-features .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2px;
}
.enterprise-contact {
    flex: 1;
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}
.enterprise-contact h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: white;
}
.enterprise-contact p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}
.enterprise-contact .contact-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.enterprise-contact .contact-button:hover {
    background-color: #0056b3;
}

.how-it-works-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    background-color: var(--background-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.diagram-box {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 500px;
    background-color: var(--card-background);
}
.diagram-box.input {
    border-style: dashed;
}
.diagram-box.privileged { border-color: #28a745; background-color: #f0fff4; }
.diagram-box.quarantined { border-color: #dc3545; background-color: #fff0f1; }
.diagram-box h4 { margin: 0 0 0.5rem 0; font-size: 1.1rem; }
.diagram-box p { margin: 0; color: #6c757d; font-size: 0.9rem;}
.diagram-arrow {
    font-size: 2rem;
    color: var(--text-color);
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.team-member {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.team-member h3 {
    font-size: 1.4rem;
    margin: 0 0 0.25rem 0;
}
.team-member .title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 15px;
}
.team-member p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
}
.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.social-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: text-decoration 0.3s ease;
}
.social-links a:hover {
    text-decoration: underline;
}
footer {
    text-align: center; padding: 2rem 1rem; margin-top: 4rem;
    border-top: 1px solid var(--border-color); color: #6c757d;
}
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); display: flex; justify-content: center;
    align-items: center; z-index: 1001; opacity: 0; visibility: hidden;
}
.modal-overlay.visible {
    visibility: visible; opacity: 1;
    display: flex;
}
.modal-content {
    background-color: var(--background-color); padding: 1rem 1.5rem; border-radius: 8px;
    width: 100%; max-width: 520px; position: relative;
}
.modal-close {
    position: absolute; top: 10px; right: 15px; font-size: 2rem;
    cursor: pointer; border: none; background: none; color: var(--text-secondary-color);
}
.modal-close:hover { color: #000; }
.modal-tabs { display: flex; border-bottom: 1px solid var(--border-color); margin-bottom: 1.5rem; }
.modal-tabs button {
    flex: 1; padding: 1rem; border: none; background: none; cursor: pointer;
    font-size: 1.1rem; border-bottom: 3px solid transparent;
}
.modal-tabs button.active { border-bottom-color: var(--primary-color); font-weight: bold; }
.form-container { display: none; }
.form-container.active { display: block; }
form h2 { text-align: center; margin-top: 0; }
input {
    display: block; padding: 12px; margin-bottom: 1rem;
    border: 1px solid var(--border-color); border-radius: 5px; box-sizing: border-box; font-size: 1rem;
}
input[type="password"] {
    display: block; width: 100%; padding: 12px; margin-bottom: 1rem;
    border: 1px solid var(--border-color); border-radius: 5px; box-sizing: border-box; font-size: 1rem;
}
input[type="email"] {
    display: block; width: 100%; padding: 12px; margin-bottom: 1rem;
    border: 1px solid var(--border-color); border-radius: 5px; box-sizing: border-box; font-size: 1rem;
}
input[type="checkbox"] {
    width: auto; padding-top: 0.5rem; vertical-align: middle; margin-bottom: 1rem;
    border-radius: 5px; box-sizing: border-box; font-size: 1rem;
}
button[type="submit"] {
    width: 100%; padding: 12px; margin-top: 1rem; background-color: var(--primary-color);
    color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 1rem; font-weight: bold;
}
button[type="submit"]:hover { background-color: #0056b3; }

/* --- SUBSCRIBE BUTTON AND MODAL STYLES --- */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}
#subscribe-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 999;
    animation: bounce 2.5s infinite 2s; /* Start animation after 2s */
}
#subscribe-fab:hover {
    animation-play-state: paused;
    background-color: #0056b3;
}
#newsletter-form-modal input {
    padding: 0.75rem 1rem;
    border-radius: 20px;
}
#newsletter-form-modal button {
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
}
.newsletter-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2em;
    text-align: center;
}


.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

#credit-display-card { text-align: center; }
#credit-display {
    font-size: 2.75rem; font-weight: 700; color: var(--primary-color);
}
#credit-explanation {
    color: var(--text-secondary-color); font-size: 0.9rem; margin-top: 0.25rem;
}
.sidebar {
    width: 200px;
    flex-shrink: 0;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 2rem; /* Defines the space from the top when scrolling */
}
.main-content {
    flex-grow: 1; max-width: 920px;
}
.sidebar-nav ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.25rem;
}
.sidebar-nav a {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 1rem; border-radius: 8px; text-decoration: none;
    color: var(--text-color); font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.sidebar-nav a:hover { background-color: #eef2ff; }
.sidebar-nav a.active { background-color: var(--primary-color); color: white; }
.sidebar-nav a .icon { width: 20px; height: 20px; }
.sidebar-nav a.active .icon path { fill: white; }

.content-section { display: none; }
.content-section.active { display: block; }
.content-header { margin-bottom: 1.5rem; }
.content-header h1 {
    font-size: 2rem; margin: 0 0 0.25rem 0; color: #111827;
}
.content-header p {
    font-size: 1rem; color: var(--text-secondary-color); margin: 0;
}

.content-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}
.card-body { padding: 1.5rem; }
.card-body h2 { margin-top: 0; }
.card-body h3 { margin-top: 1.5em; }
.card-body p, .card-body li { color: var(--text-secondary-color); }
.card-body ul { padding-left: 20px; }
.card-body code {
    background-color: #f3f4f6;
    padding: 0.2em 0.4em;
    margin: 0;
    font-size: 85%;
    border-radius: 6px;
    font-family: 'Fira Code', 'Courier New', monospace;
}

.card-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.card-header h3 { font-size: 1rem; margin: 0; }


/* MODIFICATION: Added styles for clickable policy rows */
.policy-row {
    cursor: pointer;
}
tbody tr.policy-row:hover {
    background-color: #f9fafb;
}

.token-cell {
    cursor: pointer; font-family: 'Fira Code', 'Courier New', monospace;
    color: var(--primary-color); font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px;
}
.token-cell:hover { text-decoration: underline; }
.delete-btn {
    background-color: var(--danger-color);
    color: white; padding: 6px 10px; border: none;
    border-radius: 5px; cursor: pointer; font-size: 0.85rem;
    transition: background-color 0.3s ease;
}
.delete-btn:hover { background-color: var(--danger-hover-color); }

.revoke-btn {
    background-color: var(--danger-color);
    color: white; padding: 6px 10px; border: none;
    border-radius: 5px; cursor: pointer; font-size: 0.85rem;
    transition: background-color 0.3s ease;
}
.revoke-btn:hover { background-color: var(--danger-hover-color); }

.delete-policy-btn {
    background-color: var(--danger-color);
    color: white; padding: 6px 10px; border: none;
    border-radius: 5px; cursor: pointer; font-size: 0.85rem;
    transition: background-color 0.3s ease;
}
.delete-policy-btn:hover { background-color: var(--danger-hover-color); }


#new-token-form-container {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: #f9fafb;
    display: none;
}
.form-row {
    display: flex; gap: 1rem; align-items: flex-end; margin-bottom: 0;
}
.form-row .form-group { flex: 1; margin-bottom: 0; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }


#alert-container { position: fixed; top: 80px; right: 20px; z-index: 1002; display: flex; flex-direction: column; gap: 10px; }
.custom-alert { padding: 15px 20px; border-radius: 8px; color: white; font-weight: 500; box-shadow: 0 4px 15px rgba(0,0,0,0.1); opacity: 0; transform: translateX(100%); animation: slideIn 0.5s forwards; }
.custom-alert.success { background-color: var(--success-color); }
.custom-alert.error { background-color: var(--danger-color); }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
@keyframes slideOut { to { opacity: 0; transform: translateX(100%); } }


.policy-formal-repr {
    margin-top: 1rem;
    border-radius: 8px;
    background-color: #2d2d2d;
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
}
.policy-formal-repr pre { margin: 0; }

/* Styles for the new configuration modal */
.tool-item { border-bottom: 1px solid var(--border-color); padding: 1.25rem 0; }
.tool-item:last-child { border-bottom: none; padding-bottom: 0; }
.tool-item:first-child { padding-top: 0; }
.tool-header { display: flex; align-items: baseline; gap: 1rem; }
.tool-header label { font-size: 1.1rem; font-weight: 600; flex-grow: 1; cursor: pointer; }
.tool-header input[type="checkbox"] { width: 1.25rem; height: 1.25rem; accent-color: var(--primary-color); }
.tool-description { color: var(--text-secondary-color); font-size: 0.95rem; margin: 0.5rem 0 0 2.25rem; }
.tool-configurations { margin: 1.25rem 0 0 2.25rem; display: flex; flex-direction: column; gap: 1rem; }

.config-option { display: flex; align-items: flex-start; gap: 0.75rem; }
.config-option input[type="radio"] { margin-top: 4px; }
.config-option .config-details { flex-grow: 1; }
.config-option .config-details label { font-weight: 500; display: block; }
.config-option .config-details p { font-size: 0.9rem; margin: 0; color: var(--text-secondary-color); }

.custom-policy-dropdown {
    display: none; /* Hidden by default */
    margin-top: 0.75rem;
    padding-left: 1.75rem; /* Indent to align with config descriptions */
}
.custom-policy-dropdown label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}
.custom-policy-dropdown select {
    font-size: 0.95rem;
    padding: 8px 12px;
    margin-bottom: 0;
}

.security-badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    margin-left: 0.5rem;
}

.security-badge.guaranteed { background-color: #6b21a8; }
.security-badge.high-probabilistic { background-color: #16a34a; }
.security-badge.mid-probabilistic { background-color: #f59e0b; }
.security-badge.low-probabilistic { background-color: #dc2626; }
.security-badge.cosmetic { background-color: #808080; }

.credits-display {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary-color);
    background-color: #f3f4f6;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.button-primary {
    background-color: var(--primary-color); color: white;
    padding: 0.5rem 1.25rem; border-radius: 20px;
    transition: background-color 0.3s ease;
    border: none; cursor: pointer; font-weight: 500; font-size: 1rem;
}
.button-primary:hover { background-color: var(--primary-hover-color); }
.button-primary:disabled { background-color: #a0c7ff; cursor: not-allowed; }


.button-secondary {
    background-color: #eef2ff; color: var(--primary-color);
    border: 1px solid transparent;
    padding: 0.4rem 1rem; border-radius: 20px;
    font-weight: 500; font-size: 0.9rem;
    cursor: pointer; transition: all 0.2s ease;
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.button-secondary:hover { background-color: #e0e7ff; }

    .dashboard-layout {
    display: flex; gap: 1.5rem; padding-top: 2rem; align-items: flex-start;
}

.modal-header { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-color); }
.modal-header .button-group { display: flex; gap: 0.5rem; }

.modal-header h3 {
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.modal-body { padding: 1.5rem; max-height: 60vh; overflow-y: auto; }

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: #f9fafb;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
}


table { width: 100%; border-collapse: collapse; text-align: left; }
th, td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color); vertical-align: middle;
}
th {
    font-weight: 600; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-secondary-color);
}
tr:last-child td { border-bottom: none; }

input[type="number"], input[type="text"], select, textarea {
    display: block; width: 100%;
    padding: 10px 14px; margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px; box-sizing: border-box; font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
textarea { font-family: inherit; line-height: 1.5; resize: vertical; }
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.spending-cap-cell {
    cursor: pointer;
    position: relative; /* Needed for positioning the input later if desired */
}
.spending-cap-cell .cap-value:hover {
    text-decoration: underline;
    text-decoration-style: dotted;
}

@media screen and (max-width: 768px) {
    /* Styles for tablets and smaller devices */
    .container {
        padding: 0 1rem;
    }

    .hero h1 .highlight-box {
        min-width: 100%;
        max-width: 100%;
    }

    .code-block {
        border-radius: 8px;
        font-family: 'Fira Code', 'Courier New', Courier, monospace;
        font-size: 0.6rem;
        overflow: hidden;
    }

    .nav-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    body.is-landing-page .nav-page-links {
        display: none;
    }

    .code-column {
        flex: 1;
        min-width: 100%; 
        max-width: 100%;
    }
    .code-column h3 {
        font-size: 1.0rem;
        margin-bottom: 0.5rem;
        padding-left: 0.5rem;
    }
    .code-column p {
        color: #6c757d;
        margin-bottom: 1rem;
        padding-left: 0.5rem;
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .code-comparison {
        flex-direction: column;
    }

    .enterprise-content {
        flex-direction: column;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-links::before {
        font-size: 2rem;
        cursor: pointer;
    }

    /* Hide the original navigation links */
    .nav-page-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-page-links.active {
        display: flex;
    }

    .team-member {
        background-color: var(--card-background);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        padding: 1rem;
    }

    .team-member img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1.5rem;
        border: 3px solid white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .team-member h3 {
        font-size: 1.4rem;
        margin: 0 0 0.25rem 0;
    }
    .team-member .title {
        color: var(--primary-color);
        font-weight: bold;
        margin-bottom: 1rem;
    }
    .team-member p {
        font-size: 0.95rem;
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .enterprise-section {
        background-color: var(--dark-background);
        color: var(--dark-text);
        border-radius: 16px;
        padding: 4rem;
        margin: 4rem 0;
        font-size: 1rem;
    }
    .enterprise-section h2 {
        color: white;
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }
    .enterprise-section .section-subtitle {
        color: #a0a0a0;
        font-size: 1.0rem;
    }
    .enterprise-content {
        display: flex;
        gap: 3rem;
        margin-top: 3rem;
        align-items: center;
    }
    .enterprise-features {
        flex: 2;
    }
    .enterprise-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .enterprise-features li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
    .enterprise-features .icon {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-top: 2px;
    }
    .enterprise-contact {
        flex: 1;
        background-color: var(--dark-card);
        border: 1px solid var(--dark-border);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
    }
    .enterprise-contact h3 {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: white;
    }
    .enterprise-contact p {
        color: #a0a0a0;
        margin-bottom: 1.5rem;
    }
    .enterprise-contact .contact-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }
    .enterprise-contact .contact-button:hover {
        background-color: #0056b3;
    }

}

@media screen and (max-width: 480px) {
    /* Styles for mobile phones */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .modal-content {
        padding: 1rem;
        margin: 1rem;
    }
}
