<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
* AI Automation Solutions - Main Stylesheet
* Cyberpunk + Minimalist Style
* Created: 2023
*/

/* === Base Styles === */
:root {
    /* Color Palette */
    --primary: #1DCED8;        /* Soczny elektrik-lazurny */
    --background: #121212;     /* Ugholno-chernyy */
    --gradient-start: #A044FF; /* Purpurnyy */
    --gradient-end: #6A3093;   /* Purpurnyy variation */
    --text-primary: #FFFFFF;   /* White */
    --text-secondary: #B0B0B0; /* Gray */
    --accent: #FF6E40;         /* Neon-orange */
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset &amp; Normalization */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style-position: inside;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: var(--border-radius-sm);
}

h3 {
    font-size: 1.75rem;
    color: var(--primary);
}

h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Section styling */
section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    display: inline-block;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-xs);
}

/* Button styles */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button.primary {
    background-color: var(--primary);
    color: var(--background);
    box-shadow: 0 0 15px rgba(29, 206, 216, 0.5);
}

.cta-button.primary:hover {
    box-shadow: 0 0 25px rgba(29, 206, 216, 0.7);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background-color: rgba(29, 206, 216, 0.1);
    transform: translateY(-2px);
}

/* Header &amp; Navigation */
.site-header {
    padding: var(--spacing-sm) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(29, 206, 216, 0.2);
    transition: all var(--transition-normal);
}

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

.logo {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* Mobile menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
}

.mobile-menu-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
}

.close-button {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: var(--spacing-md);
}

.mobile-menu a {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

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

/* Main content starts below header height */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background) 0%, rgba(18, 18, 18, 0.9) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--gradient-start), transparent 50%),
                radial-gradient(circle at bottom left, var(--gradient-end), transparent 50%);
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(45deg, transparent, rgba(29, 206, 216, 0.05));
    z-index: 1;
}

/* About Section */
.about-section {
    background-color: rgba(18, 18, 18, 0.5);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), transparent);
    opacity: 0.2;
}

.about-highlights {
    list-style: none;
    margin-top: var(--spacing-md);
}

.about-highlights li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--spacing-xs);
}

.about-highlights li::before {
    content: 'âœ“';
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Solutions Section */
.solutions-section {
    background-color: var(--background);
    position: relative;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, var(--gradient-end), transparent 70%);
    opacity: 0.1;
    z-index: -1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.solution-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(29, 206, 216, 0.1);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(29, 206, 216, 0.1);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transition: height var(--transition-normal);
}

.solution-card:hover::before {
    height: 100%;
}

.solution-icon {
    margin-bottom: var(--spacing-sm);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(29, 206, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.icon-circle::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.6;
    filter: blur(10px);
}

.solution-card h3 {
    margin-bottom: var(--spacing-sm);
}

/* How It Works Section */
.how-it-works-section {
    background-color: rgba(18, 18, 18, 0.5);
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
}

.process-step {
    text-align: center;
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    position: relative;
}

.process-step:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--background);
    box-shadow: 0 0 15px rgba(29, 206, 216, 0.3);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--background);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--gradient-start), transparent 70%);
    opacity: 0.1;
    z-index: -1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(29, 206, 216, 0.05);
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(29, 206, 216, 0.2);
}

.benefit-card h3 {
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
    background-color: rgba(18, 18, 18, 0.5);
    position: relative;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(29, 206, 216, 0.05);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(29, 206, 216, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(29, 206, 216, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
    border: 3px solid var(--primary);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.testimonial-company {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--background);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom center, var(--gradient-end), transparent 70%);
    opacity: 0.1;
    z-index: -1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid rgba(29, 206, 216, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(29, 206, 216, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    color: var(--background);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: var(--border-radius-sm);
}

.pricing-header {
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    margin-bottom: var(--spacing-sm);
}

.price {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

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

.custom-quote {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-features {
    padding: var(--spacing-md);
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: var(--spacing-xs);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: 'âœ“';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.pricing-cta {
    padding: var(--spacing-md);
    text-align: center;
}

.highlighted {
    border-color: var(--primary);
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    background-color: rgba(18, 18, 18, 0.5);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    border: 1px solid rgba(29, 206, 216, 0.1);
}

.form-errors {
    background-color: rgba(255, 110, 64, 0.2);
    border-left: 4px solid var(--accent);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius-sm);
}

.form-errors ul {
    list-style: none;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    color: #000000;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(29, 206, 216, 0.3);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(29, 206, 216, 0.3);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: var(--spacing-xs);
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-submit {
    text-align: center;
    margin-top: var(--spacing-md);
}

.faq-container {
    padding: var(--spacing-md);
}

.faq-container h3 {
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.faq-container h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.faq-item {
    margin-bottom: var(--spacing-md);
}

.faq-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

/* Footer */
.site-footer {
    background-color: rgba(12, 12, 12, 0.9);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(29, 206, 216, 0.1);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-about p {
    margin-top: var(--spacing-sm);
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-contact h3,
.footer-links h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
}

.footer-contact li,
.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-top: 1px solid rgba(29, 206, 216, 0.2);
    z-index: 1000;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-button {
    background-color: var(--primary);
    color: var(--background);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.cookie-button:hover {
    background-color: var(--accent);
}

/* Thank You Page */
.thankyou-section {
    min-height: calc(100vh - 80px - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.thankyou-content {
    max-width: 600px;
    padding: var(--spacing-md);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thankyou-content h1 {
    width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.thankyou-content p {
    width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(29, 206, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    position: relative;
}

.checkmark {
    width: 30px;
    height: 60px;
    border-right: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
    transform: rotate(45deg);
    margin-top: -20px;
}

.thankyou-buttons {
    margin-top: var(--spacing-md);
}

/* Policy Pages */
.policy-section {
    padding: var(--spacing-xl) 0;
}

.policy-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.policy-content h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: var(--spacing-md);
}

.policy-content li {
    margin-bottom: var(--spacing-xs);
}

.contact-info {
    list-style: none;
    background-color: rgba(29, 206, 216, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    margin-top: var(--spacing-md);
}

.contact-info li {
    margin-bottom: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-card,
    .benefit-card,
    .testimonial-card,
    .pricing-card {
        padding: var(--spacing-sm);
    }
} </pre></body></html>