:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #64748b;
    --accent-color: #ec4899;
    --background-color: #ffffff;
    --secondary-background: #f9fafb;
    --text-color: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--secondary-background);
}

.btn-text {
    background-color: transparent;
    color: var(--text-color);
    padding: 0.625rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Navbar */
header {
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.logo-image {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.navbar-logo .logo-image:hover {
    transform: scale(1.05);
}

.footer-logo .logo-image {
    height: 80px;
    width: auto;
    margin-bottom: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.accent {
    color: var(--accent-color);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bar {
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.code-preview {
    background-color: #1e293b;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}

.code-header {
    background-color: #0f172a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ef4444;
    margin-right: 0.5rem;
}

.code-dot:nth-child(2) {
    background-color: #f59e0b;
}

.code-dot:nth-child(3) {
    background-color: #10b981;
}

.code-title {
    margin-left: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.code-block {
    padding: 1.5rem;
    color: #e2e8f0;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--secondary-background);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--background-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Dashboard Section */
.dashboard-section {
    padding: 2rem 0;
}

.hidden {
    display: none;
}

/* Dashboard Styles */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.dashboard-card {
    background-color: var(--background-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.dashboard-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: var(--text-color);
}

.api-key-container {
    display: flex;
    align-items: center;
    background-color: var(--secondary-background);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.api-key-container code {
    flex: 1;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    padding: 0.25rem;
    margin-left: 0.5rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-item:last-of-type {
    margin-bottom: 1rem;
}

.stat-item span {
    color: var(--text-light);
}

.stat-item strong {
    font-weight: 600;
}

.recent-calls {
    margin-bottom: 1rem;
}

.call-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    background-color: var(--secondary-background);
    margin-bottom: 0.5rem;
}

.call-item .timestamp {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.call-item .endpoint {
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.call-item .status {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
    border-radius: 1rem;
    font-weight: 500;
}

.status.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu .navbar-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.mobile-menu .nav-link {
    font-size: 1.125rem;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-actions .btn {
    width: 100%;
}

/* Menu toggle animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dashboard-header h2 {
        margin-bottom: 0;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--secondary-background);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--background-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-section .container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .navbar-links, .navbar-actions .btn:not(.menu-toggle) {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 80px;
        width: 80px;
    }
    
    .footer-logo .logo-image {
        height: 80px;
        width: 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* User Profile and Authentication Styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.user-menu:hover {
    background-color: var(--secondary-background);
}

#user-name {
    font-weight: 500;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#user-profile {
    position: relative;
}

/* Clerk Container */
#clerk-auth-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#clerk-auth-container.visible {
    opacity: 1;
    pointer-events: all;
}

/* User info in dashboard */
.user-info {
    margin-bottom: 1.5rem;
}

.user-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.user-info-item:last-of-type {
    margin-bottom: 0.5rem;
}

.user-info-item span {
    color: var(--text-light);
}

.user-info-item strong {
    font-weight: 600;
    max-width: 60%;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hide modals that have been replaced by Clerk */
.clerk-hidden {
    display: none !important;
}

/* Mobile responsiveness for authentication */
@media (max-width: 768px) {
    .user-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    #user-name {
        max-width: 100%;
    }
    
    .user-info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .user-info-item strong {
        max-width: 100%;
        text-align: left;
        margin-top: 0.25rem;
    }
}

.clerk-modal-wrapper {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 20px;
    max-width: 500px;
    width: 100%;
    min-height: 400px;
}

#clerk-sign-in-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#clerk-sign-in-container.hidden {
    display: none;
}

/* Clerk auth buttons container */
#clerk-auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Clerk User Button customization */
.cl-userButtonBox {
    font-family: inherit;
}

.cl-userButtonTrigger {
    border-radius: var(--radius-md);
    color: var(--text-color);
}

.cl-userButtonTrigger:hover {
    background-color: var(--secondary-background);
}

/* Clerk Modal styling */
.cl-card, 
.cl-signIn-root,
.cl-signUp-root,
.cl-userProfile-root {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-md);
    font-family: inherit;
}

.cl-signIn-root {
    max-height: 90vh;
    overflow-y: auto;
}

/* Make sign in container responsive */
@media (max-width: 480px) {
    #clerk-sign-in-container {
        padding: 0.5rem;
    }
    
    .cl-card, 
    .cl-signIn-root,
    .cl-signUp-root,
    .cl-userProfile-root {
        max-width: 100%;
    }
}

/* Click outside to close */
#clerk-sign-in-container {
    cursor: pointer;
}

#clerk-sign-in-container > * {
    cursor: default;
}

/* Dynamic Content Overlay */
.dynamic-content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
}

.dynamic-content-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dynamic-content-container {
    background-color: var(--background-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.dynamic-content-overlay.active .dynamic-content-container {
    transform: translateY(0);
}

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

.dynamic-content-header h2 {
    margin-bottom: 0;
    font-size: 1.75rem;
}

.close-content-btn {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--text-light);
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-content-btn:hover {
    background-color: var(--secondary-background);
    color: var(--text-color);
}

.dynamic-content-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(90vh - 5rem);
}

/* Products Page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.product-features {
    list-style-type: none;
    margin: 1.5rem 0;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.product-card button {
    margin-top: auto;
}

/* Documentation Page */
.documentation-layout {
    display: flex;
    gap: 2rem;
}

.documentation-sidebar {
    flex: 0 0 250px;
    border-right: 1px solid var(--border-color);
    padding-right: 2rem;
}

.documentation-content {
    flex: 1;
}

.documentation-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.documentation-nav li {
    margin-bottom: 0.75rem;
}

.documentation-nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.documentation-nav a:hover {
    background-color: var(--secondary-background);
    color: var(--primary-color);
}

.documentation-nav a.active {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.code-sample {
    background-color: #1e293b;
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.code-sample pre {
    margin: 0;
}

.code-sample code {
    color: #e2e8f0;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Fullpage Overlay Styles */
.fullpage-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    z-index: 2000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullpage-overlay.active {
    opacity: 1;
}

.fullpage-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.fullpage-container .dynamic-content-header {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: var(--background-color);
    z-index: 10;
}

.fullpage-container .dynamic-content-body {
    flex: 1;
    padding: 2rem;
    overflow: auto;
}

/* Documentation Layout Improvements for Fullpage */
.fullpage-container .documentation-layout {
    height: 100%;
}

.fullpage-container .documentation-sidebar {
    position: sticky;
    top: 0;
    height: calc(100vh - 80px);
    overflow-y: auto;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.fullpage-container .documentation-content {
    height: 100%;
    overflow-y: auto;
    padding-bottom: 5rem;
}

.fullpage-container .documentation-content::-webkit-scrollbar {
    width: 8px;
}

.fullpage-container .documentation-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.fullpage-container .documentation-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.fullpage-container .documentation-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.fullpage-container .endpoint-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.fullpage-container h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.fullpage-container h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.fullpage-container h5 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Pricing Page */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-label {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    margin-left: 0.5rem;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-plan {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-plan.popular {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-price {
    margin-top: 1rem;
}

.plan-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.team-member {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background-color: var(--secondary-background);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.team-member-photo {
    margin-bottom: 1.5rem;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.profile-picture:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.team-member-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.team-member-info .role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-member-info .description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive styles for dynamic content */
@media (max-width: 768px) {
    .dynamic-content-overlay {
        padding: 1rem;
    }
    
    .documentation-layout {
        flex-direction: column;
    }
    
    .documentation-sidebar {
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dynamic-content-overlay {
        padding: 0.5rem;
    }
    
    .dynamic-content-header {
        padding: 1rem;
    }
    
    .dynamic-content-body {
        padding: 1rem;
    }
}

/* Notification Messages */
.notification {
    position: relative;
    padding: 1rem 2rem;
    margin: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification p {
    margin-bottom: 0;
    font-weight: 500;
}

.notification.success {
    background-color: #dcfce7;
    border-left: 4px solid #10b981;
    color: #047857;
}

.notification.warning {
    background-color: #fff7ed;
    border-left: 4px solid #f59e0b;
    color: #b45309;
}

.notification.error {
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #b91c1c;
}

.close-notification {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: var(--transition);
}

.close-notification:hover {
    opacity: 1;
}