/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Technology Section Styles */
.technology {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(0, 102, 204, 0.02)" d="M0 0h20v20H0V0z"/></svg>');
    opacity: 0.5;
}

.technology .container {
    position: relative;
    z-index: 2;
}

.tech-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #404040;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.tech-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.carousel-btn {
    background: white;
    border: 1px solid #1e1e2f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    z-index: 3;
}

.carousel-btn:hover {
    background: #7c3aed;
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px 0;
    min-height: 300px;
}

.tech-card {
    flex: 0 0 300px;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #1e1e2f;
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #7c3aed;
    background: rgba(0, 102, 204, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tech-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
}

.tech-card p {
    color: #404040;
    font-weight: var(--font-weight-normal);
    line-height: 1.7;
    flex-grow: 1;
    text-align: center;
}

.learn-more-btn {
    background: transparent;
    border: 2px solid #7c3aed;
    color: #7c3aed;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all var(--transition-base);
    margin: 20px auto 0;
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.learn-more-btn:hover {
    background: #7c3aed;
    color: white;
}

.learn-more-btn[aria-expanded="true"] {
    background: #7c3aed;
    color: white;
}

.tech-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1e1e2f;
    color: #404040;
    line-height: 1.7;
    font-size: 0.95rem;
}

.tech-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.tech-summary p {
    color: #404040;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Responsive adjustments for technology section */
@media (max-width: 768px) {
    .tech-carousel {
        flex-direction: column;
        gap: 30px;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: -10px;
    }

    .carousel-btn.next {
        right: -10px;
    }

    .carousel-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .tech-card {
        flex: 0 0 280px;
        padding: 25px;
    }

    .tech-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .tech-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .technology {
        padding: 80px 0;
    }

    .tech-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .carousel-container {
        max-width: 280px;
    }

    .tech-card {
        flex: 0 0 260px;
        padding: 20px;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .tech-card h3 {
        font-size: 1.3rem;
    }

    .learn-more-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Typography */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --gray-color: #6c757d;
    --gray-light: #e9ecef;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-family-monospace: 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-sm: 0.875rem;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --line-height-base: 1.6;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-sm: 4px;
    --transition-base: 0.3s ease;
    --transition-fast: 0.15s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-inset: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    --focus-ring-color: rgba(0, 102, 204, 0.25);
    --focus-ring-width: 3px;
}

/* Performance Optimizations */
/* Use font-display: swap to prevent FOIT/FOUT */
@font-face {
    font-family: 'System';
    src: local('Arial'), local('Helvetica'), local('Segoe UI'), local('Ubuntu'), local('Roboto'), local('Oxygen'), local('Cantarell'), local('Open Sans'), local('Helvetica Neue');
    font-display: swap;
}

/* Optimize images */
img {}

/* Optimize text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Reduce repaints and reflows */
.hero-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Use will-change for elements that will be animated */
.feature-card,
.step,
.download-btn {
    will-change: transform;
}

/* Optimize for print */
@media print {
    body {
        font-size: 12pt;
    }

    .cta-buttons,
    .download-buttons,
    footer {
        display: none;
    }

    .container {
        max-width: none;
        width: 100%;
    }
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: var(--line-height-base);
    color: #1a1a1a;
    background-color: #f8f9fa;
    font-size: var(--font-size-base);
}

.container {
    width: 90%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5em;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: var(--font-weight-bold);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #7c3aed;
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h4 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.75rem;
}

h6 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c3aed;
}

p {
    margin-bottom: 1.5em;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 1.1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: var(--font-weight-normal);
    color: #1a1a1a;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.text-muted {
    color: #666666 !important;
}

.text-primary {
    color: #7c3aed !important;
}

/* Links */
a {
    color: #7c3aed;
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: #6d28d9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-lg);
    font-weight: var(--font-weight-bold);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    font-size: var(--font-size-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.3s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid #7c3aed;
    color: #7c3aed;
}

.btn-outline:hover {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.3s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: #7c3aed;
    border: 1px solid #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
    border-color: #6d28d9;
}

.btn-cta {
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: visible;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 102, 204, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
}

/* Card Styles */
.card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #1e1e2f;
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 10px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #7c3aed;
    border-radius: 2px;
}

.card-text {
    color: #404040;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Blog Styles */
.blog-posts {
    padding: 100px 0;
    background-color: #0a0a0f;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    border: 1px solid #1e1e2f;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color var(--transition-base);
}

.blog-post:hover .post-content h3 {
    color: #7c3aed;
}

.read-more {
    display: inline-block;
    color: #7c3aed;
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    position: relative;
    padding-right: 20px;
    transition: color var(--transition-base);
}

.read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: right 0.3s ease;
}

.read-more:hover {
    color: #6d28d9;
}

.read-more:hover::after {
    right: -5px;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e4edf5 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(0, 102, 204, 0.02)" d="M0 0h20v20H0V0z"/></svg>');
    opacity: 0.5;
}

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

.hero-content {
    max-width: 800px;
    margin-bottom: 40px;
    margin-left: 40px;
}

.hero-content h1 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.2em;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    border-radius: 2px;
    animation: shine 2s forwards;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.hero-content p {
    font-size: 1.3rem;
    color: #404040;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid #1e1e2f;
    position: relative;
    z-index: 2;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    border-radius: var(--border-radius-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Chat Bubbles Animation */
.chat-bubbles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    min-height: 200px;
}

.chat-bubble {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    animation: float 3s ease-in-out infinite;
    max-width: 200px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #10b981;
}

.chat-bubble.bubble-1 {
    animation-delay: 0s;
    transform: translateX(-10px);
}

.chat-bubble.bubble-2 {
    animation-delay: 0.5s;
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #059669;
}

.chat-bubble.bubble-3 {
    animation-delay: 1s;
    transform: translateX(-10px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* About Section */
.about-content {
    padding: 100px 0;
    background-color: #0a0a0f;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.about-section {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #1e1e2f;
    transition: all var(--transition-base);
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid #1e1e2f;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    color: #10b981;
    font-weight: var(--font-weight-bold);
}

/* Contact Section */
.contact-content {
    padding: 100px 0;
    background-color: #0a0a0f;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #1e1e2f;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    margin-bottom: 15px;
    color: #6d28d9;
    position: relative;
    padding-bottom: 10px;
}

.info-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #7c3aed;
    border-radius: 2px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    display: inline-block;
    margin-right: 15px;
}

.social-links a {
    color: #7c3aed;
    text-decoration: none;
    transition: color var(--transition-base);
}

.social-links a:hover {
    color: #6d28d9;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #1e1e2f;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #1e1e2f;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #606060;
}

/* Privacy Policy Section */
.privacy-content {
    padding: 100px 0;
    background-color: #0a0a0f;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.privacy-section {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #1e1e2f;
    transition: all var(--transition-base);
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
}

/* Terms of Service Section */
.terms-content {
    padding: 100px 0;
    background-color: #0a0a0f;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.terms-section {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #1e1e2f;
    transition: all var(--transition-base);
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
}

/* Product Features Section */
.product-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.product-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(0, 102, 204, 0.02)" d="M0 0h20v20H0V0z"/></svg>');
    opacity: 0.5;
}

.product-features .container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-features h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
    font-weight: var(--font-weight-bold);
}

.product-features p.subtitle {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-normal);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid #1e1e2f;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #7c3aed;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, linear-gradient(135deg, #6366f1, #8b5cf6));
    transform: translateY(-6px);
    transition: transform var(--transition-base);
    z-index: 2;
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.feature-card p {
    color: #404040;
    font-weight: var(--font-weight-normal);
    line-height: 1.7;
}

.feature-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #7c3aed;
    transition: transform 0.3s ease;
    background: rgba(0, 102, 204, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0066cc;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.how-it-works .container {
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 60px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #1e1e2f;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #1e7e34);
    transform: translateY(-4px);
    transition: transform var(--transition-base);
    z-index: 2;
}

.step:hover::before {
    transform: translateY(0);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: #10b981;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #004c99);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: var(--font-weight-bold);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(0, 102, 204, 0.02)" d="M0 0h20v20H0V0z"/></svg>');
    opacity: 0.5;
}

.download h2 {
    margin-bottom: 20px;
}

.download p {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 18px 35px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-base);
    min-width: 240px;
    border: 1px solid #1e1e2f;
    background: white;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border-color: #7c3aed;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: transform var(--transition-base);
    z-index: 2;
}

.download-btn.mac::before {
    background: linear-gradient(90deg, #000, #333);
    transform: translateY(-4px);
}

.download-btn.mac:hover::before {
    transform: translateY(0);
}

.download-btn.windows::before {
    background: linear-gradient(90deg, #0078d7, #005a9e);
    transform: translateY(-4px);
}

.download-btn.windows:hover::before {
    transform: translateY(0);
}

.download-btn.linux::before {
    background: linear-gradient(90deg, #29a34b, #1d7535);
    transform: translateY(-4px);
}

.download-btn.linux:hover::before {
    transform: translateY(0);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
}

.download-btn .btn-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.download-btn .btn-text {
    text-align: left;
}

.download-btn .btn-label {
    font-size: 0.85rem;
    color: #1a1a1a;
    display: block;
}

.download-btn .btn-platform {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.download-btn.mac {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.download-btn.mac:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    border-color: #b0b0b0;
}

.download-btn.windows {
    background: #f0f8ff;
    border-color: #d0e0ff;
}

.download-btn.windows:hover {
    background: #e0e8ff;
    transform: translateY(-2px);
    border-color: #b0c0ff;
}

.download-btn.linux {
    background: #f0fff0;
    border-color: #d0ffd0;
}

.download-btn.linux:hover {
    background: #e0ffe0;
    transform: translateY(-2px);
    border-color: #b0ffb0;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #1a1a1a;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(255, 255, 255, 0.02)" d="M0 0h20v20H0V0z"/></svg>');
    opacity: 0.3;
}

.footer {
    background-color: #e0e0e0;
    color: #1a1a1a;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #7c3aed;
    border-radius: 2px;
}

.footer-logo p {
    color: #e0e0e0;
    font-size: var(--font-size-base);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: var(--font-size-base);
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #7c3aed;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e0e0e0;
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
    position: relative;
    display: inline-block;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7c3aed;
    transition: width var(--transition-base);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-column ul li a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-size: var(--font-size-sm);
}

/* Navigation Styles */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav .nav-logo {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: #1a1a1a;
    text-decoration: none;
    position: relative;
}

.main-nav {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
}

.nav-logo {
    margin-right: 20px;
}


.main-nav .nav-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #7c3aed;
    transition: width var(--transition-base);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    position: relative;
    padding-bottom: 5px;
    transition: color var(--transition-base);
    outline-offset: 2px;
}

.nav-links a:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
    z-index: 1000;
}

.nav-links a.active {
    color: #7c3aed;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #7c3aed;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: #1a1a1a;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .hero .container {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }

        .hero-content {
            max-width: 100%;
            margin-bottom: 0;
        }

        .hero-image {
            max-width: 400px;
        }
    }

    .hero-content {
        max-width: 500px;
        margin-bottom: 0;
    }

    .hero-image {
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 140px 0;
    }

    .hero-content h1 {
        font-size: 4.2rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .container {
        max-width: 1400px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        gap: 40px;
    }

    .step {
        min-width: 280px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
    }

    .btn-cta {
        box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2.8rem;
    }

    .steps {
        flex-direction: column;
        gap: 30px;
    }

    .step {
        min-width: 100%;
        padding: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
    }

    .download-btn .btn-icon {
        font-size: 1.8rem;
    }

    .download-btn .btn-label {
        font-size: 0.8rem;
    }

    .download-btn .btn-platform {
        font-size: 1.05rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2.4rem;
    }

    .download-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.feature-card,
.step,
.download-btn {
    animation: fadeIn 0.6s ease forwards;
}

.feature-card {
    animation-delay: 0.1s;
    transition: all 0.3s ease;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
    transition: all 0.3s ease;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
    transition: all 0.3s ease;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
    transition: all 0.3s ease;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
    transition: all 0.3s ease;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
    transition: all 0.3s ease;
}

.step {
    animation-delay: 0.1s;
    transition: all 0.3s ease;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
    transition: all 0.3s ease;
}

.step:nth-child(3) {
    animation-delay: 0.3s;
    transition: all 0.3s ease;
}

.step:nth-child(4) {
    animation-delay: 0.4s;
    transition: all 0.3s ease;
}

.download-btn {
    animation-delay: 0.1s;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease forwards, float 6s ease-in-out infinite;
}

.download-btn:nth-child(2) {
    animation-delay: 0.2s;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease forwards, float 6s ease-in-out infinite 1s;
}

.download-btn:nth-child(3) {
    animation-delay: 0.3s;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease forwards, float 6s ease-in-out infinite 2s;
}

/* Hover effects */
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    animation: pulse 0.6s ease forwards;
}

.btn-primary:hover {
    animation: pulse 0.6s ease forwards;
}

/* CTA Button Pulse Animation */
.btn-cta {
    animation: pulse 2s ease-in-out infinite;
}

/* Hero section animation */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards 0.5s;
}

.hero-image {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards 0.8s;
}

/* Feature cards animation */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:nth-child(1) {
    animation: fadeIn 0.6s ease forwards 0.3s;
}

.feature-card:nth-child(2) {
    animation: fadeIn 0.6s ease forwards 0.5s;
}

.feature-card:nth-child(3) {
    animation: fadeIn 0.6s ease forwards 0.7s;
}

.feature-card:nth-child(4) {
    animation: fadeIn 0.6s ease forwards 0.9s;
}

.feature-card:nth-child(5) {
    animation: fadeIn 0.6s ease forwards 1.1s;
}

.feature-card:nth-child(6) {
    animation: fadeIn 0.6s ease forwards 1.3s;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {

    body,
    .features,
    .how-it-works,
    .download {
        background: white !important;
        color: #1a1a1a !important;
    }

    .feature-card,
    .step,
    .download-btn {
        border: 2px solid black !important;
        background: white !important;
    }

    a,
    .btn,
    .footer-column ul li a {
        color: #1a1a1a !important;
    }

    .btn-primary {
        background: #1a1a1a !important;
        color: white !important;
    }

    footer {
        background: #f8f9fa !important;
        color: #1a1a1a !important;
    }

    .footer-bottom {
        border-color: #1a1a1a !important;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid #1e1e2f;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, linear-gradient(135deg, #6366f1, #8b5cf6));
    transform: translateY(-4px);
    transition: transform var(--transition-base);
    z-index: 2;
}

.pricing-card:hover::before {
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: #7c3aed;
}

.pricing-card h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 1.75rem;
}

.pricing-card .price {
    margin-bottom: 25px;
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: #1a1a1a;
}

.pricing-card .amount {
    font-size: 3rem;
}

.pricing-card .period {
    font-size: 1rem;
    color: #b0b0b0;
    margin-left: 5px;
}

.pricing-card .features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-card .features li {
    padding: 10px 0;
    border-bottom: 1px solid #1e1e2f;
    color: #404040;
    font-size: var(--font-size-base);
}

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

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}

.pricing-card.recommended {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid #7c3aed;
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.recommended .btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
}

.ribbon {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    border-radius: 0 8px 0 8px;
    z-index: 3;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #1e1e2f;
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    color: #404040;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #1a1a1a;
}

.contact .container {
    max-width: 600px;
}

.contact h2 {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.contact p {
    margin-bottom: 30px;
    color: #e0e0e0;
}

.contact .btn {
    background: white;
    color: #1a1a1a;
    border: 1px solid white;
    font-weight: var(--font-weight-bold);
}

.contact .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Cookie Consent Banner - Replaced with Osano cookieconsent library */

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .cookie-modal-content {
        width: 95%;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }

    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
    }

    .cookie-modal-header h2 {
        font-size: 1.3rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--color-light-bg);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

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

.workflow-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.workflow-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.workflow-example {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: var(--color-light-bg);
    border-radius: 8px;
    font-size: 0.9rem;
}

.workflow-command {
    font-weight: 600;
    color: var(--color-text);
    flex: 1;
    min-width: 150px;
}

.arrow {
    color: var(--color-primary);
    font-weight: bold;
    margin: 0 0.5rem;
}

.workflow-result {
    color: var(--color-text-secondary);
    flex: 2;
    min-width: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .workflow-examples {
        grid-template-columns: 1fr;
    }

    .workflow-example {
        flex-direction: column;
        text-align: center;
    }

    .arrow {
        margin: 0.5rem 0;
    }
}