:root {
    --neon-green: #00ff41;
    --neon-green-dark: #00cc34;
    --neon-green-light: #66ff8a;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text-gray: #e0e0e0;
    --white: #ffffff;
    --accent-bg: #0d1b0d;
    --transition-speed: 300ms;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 255, 65, 0.1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-gray);
    background-color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--neon-green-light);
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    transition: background var(--transition-speed) ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity var(--transition-speed) ease;
}

.logo:hover,
.logo:focus {
    opacity: 0.8;
    outline: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    margin: 3px 0;
    transition: all var(--transition-speed) ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.1);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--accent-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

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

.hero-form-card {
    background: var(--medium-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 65, 0.2);
    box-shadow: 0 8px 32px rgba(0, 255, 65, 0.15);
    animation: fadeInRight 1s ease-out 0.6s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-form-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero-form-card > p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--black);
    border-color: var(--neon-green);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--neon-green-light);
    border-color: var(--neon-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-green);
    border-color: var(--neon-green);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--neon-green);
    color: var(--black);
}

.btn-text {
    background: transparent;
    color: var(--text-gray);
    border: none;
    padding: 0.5rem 1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

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

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

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

.form-group label {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: var(--border-radius);
    background: var(--light-gray);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--neon-green);
}

.checkbox-label span {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.content-section {
    padding: 5rem 0;
    position: relative;
}

.bg-dark {
    background: var(--dark-gray);
}

.bg-light {
    background: var(--medium-gray);
}

.bg-accent {
    background: var(--accent-bg);
}

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

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neon-green);
    font-weight: 500;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.content-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.1);
}

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

.feature-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
    border-color: var(--neon-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse > * {
    direction: ltr;
}

.column-text h3 {
    margin-bottom: 1.5rem;
}

.column-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.column-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.1);
}

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

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--medium-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all var(--transition-speed) ease;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-green);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.0625rem;
    line-height: 1.6;
}

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

.process-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 65, 0.2);
    position: relative;
    transition: all var(--transition-speed) ease;
}

.process-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.2);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 255, 65, 0.2);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.content-full {
    max-width: 100%;
}

.skills-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.skills-image {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.1);
    width: 100%;
}

.skills-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.skills-text h3:first-child {
    margin-top: 0;
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.testimonial-content p {
    color: var(--text-gray);
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.author-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1.0625rem;
}

.author-role {
    color: var(--neon-green);
    font-size: 0.9375rem;
    margin-top: 0.25rem;
}

.future-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.future-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.future-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.1);
    position: sticky;
    top: 100px;
}

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

.blog-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all var(--transition-speed) ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 255, 65, 0.25);
    border-color: var(--neon-green);
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.blog-date {
    color: var(--text-gray);
}

.blog-category {
    color: var(--neon-green);
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--neon-green);
    font-weight: 600;
    gap: 0.5rem;
}

.blog-link::after {
    content: '→';
    transition: transform var(--transition-speed) ease;
}

.blog-link:hover::after {
    transform: translateX(5px);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.faq-question:hover {
    color: var(--neon-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--neon-green);
    transition: transform var(--transition-speed) ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.cta-section {
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-text h2 {
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.disclaimer-text {
    font-size: 0.9375rem;
    font-style: italic;
    color: rgba(224, 224, 224, 0.7);
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--neon-green);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form.large {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.contact-info {
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.info-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--neon-green);
}

.info-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.site-footer {
    background: var(--black);
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-column h3,
.footer-column h4 {
    color: var(--neon-green);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.footer-column p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-address {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--neon-green);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.8125rem;
    color: rgba(224, 224, 224, 0.6);
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--neon-green);
    z-index: 9999;
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 255, 65, 0.2);
    transform: translateY(100%);
    transition: transform 400ms ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.cookie-banner p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.cookie-banner a {
    color: var(--neon-green);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--neon-green);
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 255, 65, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.6);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed) ease;
        border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-column-layout.reverse {
        direction: ltr;
    }
    
    .skills-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .future-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-form-card {
        padding: 1.5rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .feature-card,
    .process-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cookie-banner {
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-gray);
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--neon-green);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--white);
    font-weight: 600;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-intro {
    font-size: 1.25rem;
    color: var(--neon-green);
    margin-top: 1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neon-green);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content strong {
    color: var(--white);
    font-weight: 600;
}

.legal-content a {
    color: var(--neon-green);
    text-decoration: underline;
}