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

:root {
    --background: #0a0e16;
    --foreground: #e5e7eb;
    --foreground-90: rgba(229, 231, 235, 0.9);
    --foreground-70: rgba(229, 231, 235, 0.7);
    --foreground-60: rgba(229, 231, 235, 0.6);
    --foreground-30: rgba(229, 231, 235, 0.3);
    --foreground-20: rgba(229, 231, 235, 0.2);
    --foreground-18: rgba(255, 255, 255, 0.18);
    --foreground-10: rgba(255, 255, 255, 0.1);
}

html {
    font-size: 16px;
}

body {
    font-family: "Roboto Mono", "Roboto Mono Fallback", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.relative {
    position: relative;
}

.h-auto {
    height: auto;
}

.min-h-screen {
    min-height: 100vh;
}

.w-full {
    width: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

/* Background Image */
.background-image {
    position: absolute;
    inset: 0;
    z-index: -10;
    object-fit: cover;
    object-position: left;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 30;
    pointer-events: none;
}

.mobile-logo {
    height: 2.5rem;
    width: auto;
    opacity: 0.95;
}

.mobile-title {
    margin-top: 0.5rem;
    font-size: 1.375rem;
    color: var(--foreground-90);
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (min-width: 640px) {
    .mobile-title {
        font-size: 1.5rem;
    }
}

/* Mobile Menu Buttons */
.mobile-menu-btn {
    position: fixed;
    top: 1rem;
    z-index: 40;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--foreground-10);
    background-color: rgba(10, 14, 22, 0.8);
    backdrop-filter: blur(8px);
    color: var(--foreground);
    cursor: pointer;
    transition: opacity 0.2s;
}

.mobile-menu-btn:hover {
    opacity: 0.9;
}

.mobile-menu-left {
    left: 1rem;
}

.mobile-menu-right {
    right: 1rem;
}

.mobile-menu-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Desktop Header */
.desktop-header {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 30;
    align-items: center;
    justify-content: flex-start;
}

@media (min-width: 1024px) {
    .desktop-header {
        display: flex;
    }
}

.header-company {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.header-logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.header-logo {
    height: 4.5rem;
    width: auto;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .header-logo {
        height: 5.5rem;
    }
}

.header-title-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 7rem;
    pointer-events: none;
}

@media (min-width: 768px) {
    .header-title-container {
        top: 10rem;
    }
}

.header-title {
    font-size: 1.5rem;
    color: var(--foreground-90);
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (min-width: 768px) {
    .header-title {
        font-size: 1.875rem;
    }
}

/* Sidebars */
.left-sidebar,
.right-sidebar {
    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .left-sidebar,
    .right-sidebar {
        display: flex;
    }
}

.left-sidebar {
    left: 1rem;
    gap: 0.5rem;
}

.right-sidebar {
    right: 1rem;
    gap: 0.75rem;
    align-items: flex-end;
}

.sidebar-label {
    padding-left: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.sidebar-label-spaced {
    padding-top: 0.5rem;
}

.right-sidebar .sidebar-label {
    padding-right: 0.25rem;
}

/* Feature Buttons */
.feature-btn,
.benefit-btn {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--foreground-18);
    transition: all 0.2s;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 20rem;
    justify-content: flex-start;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
}

.feature-btn:hover,
.benefit-btn:hover {
    filter: brightness(1.1);
}

.feature-btn span,
.benefit-btn span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.feature-btn svg,
.benefit-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* Request Demo Button */
.request-demo-btn {
    background: linear-gradient(to right, #f472b6, #f59e0b, #a3e635);
    color: #0a0e16;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.request-demo-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    .request-demo-btn {
        animation: none;
    }
}

/* Center Content */
.center-content {
    position: absolute;
    inset: 0;
    padding: 4rem;
}

@media (min-width: 1024px) {
    .center-content {
        display: block;
    }
}

@media (max-width: 1023px) {
    .center-content {
        display: none;
    }
}

.content-border {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--foreground-20);
}

/* Decorative Element */
.decorative-element {
    pointer-events: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    opacity: 0.7;
    width: 16rem;
    height: 10rem;
}

@media (max-width: 1023px) {
    .decorative-element {
        display: none;
    }
}

.decorative-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--foreground-20);
    border-radius: 0.375rem;
    opacity: 1;
}

.decorative-line {
    position: absolute;
    height: 0.125rem;
    background-color: var(--foreground-30);
}

.decorative-line-1 {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 1.5rem;
    transform: translateX(4.89776px);
}

.decorative-line-2 {
    left: 1.5rem;
    right: 2.5rem;
    bottom: 2.5rem;
    background-color: var(--foreground-30);
    transform: translateX(-7.93023px);
}

.decorative-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    border-top: 1px solid var(--foreground-20);
}

.decorative-circle {
    position: absolute;
    top: -1rem;
    right: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--foreground-30);
    transform: rotate(22.3deg);
}

/* Legal Notice Button */
.legal-notice-btn {
    position: fixed;
    bottom: 0.75rem;
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.2s;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background-color: rgba(10, 14, 22, 0.7);
    backdrop-filter: blur(8px);
    border: none;
    color: var(--foreground);
    cursor: pointer;
    font-family: inherit;
    z-index: 30;
}

.legal-notice-btn:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .legal-notice-btn {
        right: 1rem;
    }
}

@media (max-width: 1023px) {
    .legal-notice-btn {
        left: 50%;
        transform: translateX(-50%);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 1024px) {
    .mobile-header,
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile sidebar styles */
@media (max-width: 1023px) {
    .left-sidebar.mobile-visible,
    .right-sidebar.mobile-visible {
        display: flex;
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        z-index: 50;
        background-color: rgba(10, 14, 22, 0.95);
        backdrop-filter: blur(12px);
        padding: 1rem;
        border-radius: 0.75rem;
        border: 1px solid var(--foreground-10);
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .left-sidebar.mobile-visible {
        left: 1rem;
        right: auto;
    }
    
    .right-sidebar.mobile-visible {
        right: 1rem;
        left: auto;
    }
    
    .feature-btn,
    .benefit-btn {
        width: 100%;
        min-width: 280px;
        max-width: 320px;
    }
}

/* Hide desktop elements on mobile */
@media (max-width: 1023px) {
    .desktop-header,
    .left-sidebar:not(.mobile-visible),
    .right-sidebar:not(.mobile-visible),
    .center-content,
    .decorative-element {
        display: none;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background-color: rgba(10, 14, 22, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--foreground-20);
    border-radius: 1rem;
    max-width: 56rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: auto;
}

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

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.modal-close {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background-color: var(--foreground-10);
}

.modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.modal-content {
    padding: 1.5rem;
    color: var(--foreground);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.modal-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.modal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--foreground-90);
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.modal-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--foreground-90);
}

.modal-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--foreground-70);
}

.modal-content .section-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--foreground-70);
}

.modal-content .benefit-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border-left: 3px solid var(--foreground-30);
}

.modal-content .benefit-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.modal-content .benefit-item-description {
    color: var(--foreground-80);
    line-height: 1.6;
}

/* Modal Full Width Description */
.modal-description-full {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground-90);
}

/* Modal Two-Column Layout */
.modal-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 1rem;
}

.modal-text-column {
    flex: 1;
}

.modal-video-column {
    flex: 1;
    position: sticky;
    top: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    border-radius: 0.5rem;
    overflow: hidden;
}

.modal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    /* Stack columns on mobile */
    .modal-two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-video-column {
        position: relative;
    }
}

/* Contact Form Styles - Beautiful Modern Design */
.modal-description-full {
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #d1d5db;
    font-size: 1.05rem;
}

.demo-form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

@media (min-width: 900px) {
    .demo-form-container {
        grid-template-columns: 1fr 1fr;
        gap: 4.5rem;
    }
}

.demo-form-column {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6) 0%, rgba(30, 30, 30, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.demo-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.demo-form-column h4,
.demo-info-column h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #a3e635;
    letter-spacing: 0.5px;
    position: relative;
}

.demo-form-column h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a3e635 0%, transparent 100%);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a3e635;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.95) 100%);
    border: 2px solid rgba(163, 230, 53, 0.15);
    border-radius: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.6;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(163, 230, 53, 0.4);
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95) 0%, rgba(35, 35, 35, 1) 100%);
    transform: translateY(-2px);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(163, 230, 53, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a3e635;
    background: linear-gradient(145deg, rgba(25, 25, 25, 1) 0%, rgba(35, 35, 35, 1) 100%);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(163, 230, 53, 0.15), 0 4px 20px rgba(163, 230, 53, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(209, 213, 219, 0.3);
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-submit-btn {
    padding: 1.4rem 2.5rem;
    background: linear-gradient(135deg, #a3e635 0%, #84cc16 50%, #65a30d 100%);
    color: #000000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 24px rgba(163, 230, 53, 0.3), 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 50%, #4d7c0f 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(163, 230, 53, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 230, 53, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Company Information */
.company-info {
    background: linear-gradient(145deg, rgba(163, 230, 53, 0.1) 0%, rgba(163, 230, 53, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(163, 230, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.company-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #a3e635;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(163, 230, 53, 0.3);
    position: relative;
    z-index: 1;
}

.company-address {
    font-size: 1.05rem;
    color: #e5e7eb;
    line-height: 2;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.info-box {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(163, 230, 53, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.info-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1rem;
}

.info-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-box ul li {
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    color: #e5e7eb;
    line-height: 1.8;
    font-size: 1rem;
}

.info-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a3e635;
    font-weight: bold;
    font-size: 1.3rem;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(163, 230, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.info-box ul li:last-child {
    margin-bottom: 0;
}

/* Modal container adjustments for demo form */
.modal-overlay.active .modal-container {
    max-width: 1200px;
}

@media (max-width: 900px) {
    .demo-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-form-column {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
    }
    
    .company-info,
    .info-box {
        padding: 2rem;
    }
}

/* Legal Notice Modal Styles */
.legal-sections {
    display: grid;
    gap: 3rem;
}

.legal-section {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 1.5px solid rgba(163, 230, 53, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.legal-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a3e635;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(163, 230, 53, 0.3);
    letter-spacing: 0.5px;
}

.legal-subsection {
    margin-bottom: 2rem;
}

.legal-subsection:last-child {
    margin-bottom: 0;
}

.legal-subsection-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.legal-subsection-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #d1d5db;
    margin: 0;
    white-space: pre-line;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 2rem;
    }
    
    .legal-section-title {
        font-size: 1.3rem;
    }
    
    .legal-subsection-heading {
        font-size: 1.05rem;
    }
    
    .legal-subsection-content {
        font-size: 0.95rem;
    }
}

