:root {
    --primary-color: #FBBF24;
    --secondary-color: #FBBF24;
    --text-color: #F8FAFC;
    --background-color: #0F172A;
    --dark-blue: #0F172A;
    --yellow: #FBBF24;
    --white: #FFFFFF;
    --light-gray: #E2E8F0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #0F172A;
    min-height: 100vh;
    padding-bottom: 60px;
    position: relative;
    overflow-x: hidden;
}

/* Cybersecurity Background Elements */
.cyber-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.agent-network-bg {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.security-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(251, 191, 36, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

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

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.description {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 400px;
    margin: 0 auto;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #4338CA;
}

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

.btn-secondary:hover {
    background-color: #059669;
}

.arrow {
    margin-left: 0.5rem;
}

.hidden {
    display: none;
}

.success-message {
    background-color: #ECFDF5;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.success-message h2 {
    color: #065F46;
    margin-bottom: 1rem;
}

.success-message p {
    color: #047857;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1.125rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 0;
    }
}

.widget-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    text-align: center;
}

.widget-title {
    color: #4638e6;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.widget-desc {
    color: #7b818a;
    font-size: 1.2rem;
    margin-bottom: 36px;
}

.waitlist-inline-container {
    max-width: 420px;
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
    display: block;
}

.widget-form {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    box-sizing: border-box;
    background: none;
    padding: 0;
}

.widget-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px 0 0 10px;
    font-size: 1rem;
    box-sizing: border-box;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.widget-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.widget-input:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.08);
}

.widget-btn {
    font-size: 1.1rem;
    padding: 0 24px;
    background: var(--yellow);
    color: var(--dark-blue);
    border: none;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    cursor: pointer;
    height: 48px;
    transition: background 0.2s, transform 0.1s;
    margin: 0;
    box-sizing: border-box;
}

.widget-btn:hover {
    background: #FCD34D;
    transform: translateY(-1px);
}

.widget-result {
    border: 2px solid var(--yellow);
    border-radius: 12px;
    padding: 16px 10px;
    font-size: 1rem;
    margin-top: 18px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--white);
    word-break: break-all;
}

.widget-result strong {
    color: var(--yellow);
    font-weight: 600;
}

.widget-link {
    color: var(--yellow);
    font-family: monospace;
    font-size: 0.93rem;
    display: block;
    margin-top: 8px;
    word-break: break-all;
}

@media (max-width: 600px) {
    .widget-container {
        padding: 20px 5px;
    }
    .widget-input {
        width: 140px;
        font-size: 1rem;
        padding: 12px 8px;
    }
    .widget-btn {
        font-size: 1rem;
        height: 40px;
        padding: 0 12px;
    }
    .widget-title {
        font-size: 1.3rem;
    }
    .widget-result {
        font-size: 1rem;
        padding: 14px 6px;
    }
}

.navbar {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    height: auto;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.15s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-consultation {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s;
}

.nav-consultation:hover::before {
    left: 100%;
}

.nav-consultation:hover {
    border-color: #FBBF24;
    color: #FBBF24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    transform: translateY(-1px);
}

.nav-signup {
    background: #6366f1;
    color: #fff;
    font-weight: 500;
    margin-left: 16px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.08);
}

.nav-signup:hover {
    background: #4338ca;
}

.darkmode-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 16px;
}

.hero-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 0 32px 0;
    flex-wrap: wrap;
    column-gap: 60px;
}

.hero-left {
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 480px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Simple Hero Styles */
.simple-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 24px 80px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.simple-hero-content {
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    background: rgba(251, 191, 36, 0.05);
    margin-bottom: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #FBBF24;
    text-transform: uppercase;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    }
}

.security-badge svg {
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.simple-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #FFFFFF;
}

.simple-hero-title .gradient-text {
    font-size: 4.5rem;
    position: relative;
}

.cyber-glow {
    text-shadow: 
        0 0 20px rgba(59, 130, 246, 0.3),
        0 0 40px rgba(96, 165, 250, 0.2),
        0 0 60px rgba(6, 182, 212, 0.15);
}

.simple-hero-desc {
    font-size: 1.25rem;
    color: #E2E8F0;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    letter-spacing: 0.01em;
}

.simple-waitlist-container {
    max-width: 400px;
    margin: 0 auto 64px auto;
}

.security-visualization {
    width: 100%;
    max-width: 900px;
    margin: 80px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
}

.agent-network {
    width: 100%;
    height: auto;
    max-width: 900px;
    opacity: 0.98;
}

@media (max-width: 768px) {
    .security-visualization {
        margin: 48px auto 0 auto;
        max-width: 100%;
        padding: 0 24px;
    }
    
    .agent-network {
        max-width: 100%;
    }
}

.simple-waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 0.2s;
}

.simple-email-input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(15, 23, 42, 0.6);
    color: #FFFFFF;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: 'Inter', monospace;
}

.simple-email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
}

.simple-email-input:focus {
    outline: none;
    border-color: #FBBF24;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 
        0 0 0 1px rgba(251, 191, 36, 0.2),
        0 0 20px rgba(251, 191, 36, 0.1);
}

.simple-email-input:focus ~ .input-icon {
    opacity: 0.6;
}

.simple-email-input:focus ~ .input-icon path {
    stroke: #FBBF24;
}

.simple-join-btn {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.simple-join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s;
}

.simple-join-btn:hover::before {
    left: 100%;
}

.simple-join-btn:hover {
    border-color: #FBBF24;
    color: #FBBF24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.simple-join-btn svg {
    transition: transform 0.3s ease;
}

.simple-join-btn:hover svg {
    transform: translateX(4px);
}

.simple-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px; /* gap-4 equivalent */
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}

.success-icon svg {
    width: 24px;
    height: 24px;
}

.success-text-main {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.success-text-sub {
    font-size: 0.875rem;
    color: rgba(156, 163, 175, 1); /* gray-400 */
    margin: 0;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}

.simple-result {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-result-text {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 16px;
    font-weight: 500;
}

.simple-referral-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.simple-referral-link {
    font-size: 0.9rem;
    color: #FBBF24;
    font-family: monospace;
    word-break: break-all;
    padding: 8px 12px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.simple-copy-btn {
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FBBF24;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.simple-copy-btn:hover {
    background: rgba(251, 191, 36, 0.25);
}

@media (max-width: 768px) {
    .simple-hero-title {
        font-size: 3rem;
    }
    
    .simple-hero-title .gradient-text {
        font-size: 3rem;
    }
    
    .simple-hero-desc {
        font-size: 1.1rem;
    }
    
    .simple-waitlist-container {
        max-width: 100%;
    }
    
    .security-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    .security-grid {
        background-size: 30px 30px;
    }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--light-gray);
    margin-bottom: 32px;
    max-width: 420px;
}

.hero-btn {
    display: inline-block;
    background: #6366f1;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    transition: background 0.15s, box-shadow 0.15s;
    margin-top: 8px;
}

.hero-btn:hover {
    background: #4338ca;
    box-shadow: 0 4px 16px rgba(99,102,241,0.13);
}

.hero-right {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    max-width: 700px;
}

.waitlist-section {
    margin: 48px auto 0 auto;
    max-width: 520px;
    text-align: center;
}

.waitlist-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
}

.waitlist-widget {
    margin: 0 auto;
    padding: 32px 18px 24px 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    max-width: 420px;
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 32px;
    }
    .hero-right, .hero-left {
        max-width: 100%;
        min-width: 0;
    }
    .hero-main {
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: row;
        padding: 16px 20px;
    }
    .nav-left {
        flex: 1;
    }
    .nav-right {
        flex-shrink: 0;
    }
    .nav-link {
        margin-left: 0;
        font-size: 0.9rem;
        padding: 8px 14px;
    }
    .nav-consultation {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    .hero-title, .gradient-text {
        font-size: 2rem;
    }
    .hero-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
    .waitlist-section {
        margin-top: 24px;
    }
    .waitlist-widget {
        padding: 18px 4px 14px 4px;
    }
    .widget-input {
        width: 100px;
        font-size: 1rem;
        padding: 10px 6px;
    }
    .widget-btn {
        font-size: 1rem;
        height: 36px;
        padding: 0 10px;
    }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 34, 34, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.13);
    padding: 36px 28px 28px 28px;
    min-width: 320px;
    max-width: 95vw;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.15s;
    z-index: 10;
}

.modal-close:hover {
    color: #6366f1;
}

@media (max-width: 600px) {
    .modal-content {
        min-width: 0;
        padding: 18px 4px 14px 4px;
    }
}

.footer-fixed, .footer-static, .footer-visible, .footer-hidden {
    display: unset !important;
    position: unset !important;
    opacity: unset !important;
}

#main-footer {
    width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    padding: 28px 0 22px 0;
    text-align: center;
    font-size: 0.9rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    position: fixed;
    display: block;
    opacity: 1;
}

.footer-fixed {
    position: fixed;
}
.footer-static {
    position: static;
}

/* About Section on Main Page - Glassmorphism Style */
.about-section-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

/* Glass Card Container - Highly Frosted */
.about-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 896px;
    width: 100%;
    margin: 0 auto;
}

/* Headline with Gradient Glow */
.about-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
}

/* Paragraph Text */
.about-text-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    text-align: center;
}

.about-text-paragraph:last-of-type {
    margin-bottom: 0;
}

.about-cta-main {
    text-align: center;
    margin-top: 40px;
}

.about-cta-main .nav-consultation {
    display: inline-block;
}

@media (max-width: 600px) {
    .about-section-main {
        padding: 80px 20px;
    }
    
    .about-glass-card {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .about-headline {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .about-text-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

/* About Page Styles */
.about-page {
    min-height: 100vh;
    padding: 140px 24px 80px 24px;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.2;
}

.about-section {
    margin-bottom: 48px;
}

.about-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #60A5FA;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-cta {
    text-align: center;
    margin-top: 64px;
}

.about-cta .nav-consultation {
    display: inline-block;
}

@media (max-width: 600px) {
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 32px;
    }
    
    .about-section {
        margin-bottom: 32px;
    }
    
    .about-section-title {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
} 