/* Base Reset and Variables */
:root {
    --color-primary: #2c5282;
    --color-primary-light: #4299e1;
    --color-primary-lighter: #bee3f8;
    --color-secondary: #38a169;
    --color-secondary-light: #9ae6b4;
    --color-accent: #805ad5;
    --color-accent-light: #e9d8fd;
    --color-warning: #ed8936;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-background: #ffffff;
    --color-background-alt: #f7fafc;
    --color-border: #e2e8f0;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--color-primary-light);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--color-text);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--color-background-alt);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-border);
    color: var(--color-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background-color: var(--color-background-alt);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text);
}

.logo:hover {
    color: var(--color-primary);
}

.logo svg {
    flex-shrink: 0;
}

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    list-style: none;
    padding-top: 16px;
    gap: 8px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li a {
    display: block;
    padding: 10px 0;
    color: var(--color-text);
    font-weight: 500;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.hero-illustration {
    display: flex;
    justify-content: center;
}

.hero-illustration svg {
    max-width: 300px;
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background-color: var(--color-background-alt);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Hero */
.legal-hero {
    padding: 60px 0 40px;
    background-color: var(--color-background-alt);
    text-align: center;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background-color: var(--color-primary);
    color: #ffffff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Features Grid */
.why-poland,
.benefits-section {
    padding: 60px 0;
}

.why-poland h2,
.benefits-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.features-grid,
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    padding: 24px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Cities Section */
.top-cities {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.top-cities h2 {
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.city-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.city-card-featured {
    border-left: 4px solid var(--color-primary);
}

.city-rank {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.city-content h3 {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.city-content p {
    color: var(--color-text-light);
}

.city-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.top-cities .btn {
    display: block;
    text-align: center;
}

/* Philosophy Section */
.philosophy {
    padding: 60px 0;
}

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

.philosophy h2 {
    text-align: center;
    margin-bottom: 24px;
}

.philosophy blockquote {
    padding: 24px;
    background-color: var(--color-background-alt);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.philosophy blockquote p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    padding: 24px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.process-step h3 {
    margin-bottom: 8px;
}

.process-step p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    padding: 24px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Industries Section */
.industries-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.industries-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background-color: var(--color-background);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition);
}

.faq-question:hover {
    background-color: var(--color-background-alt);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    background-color: var(--color-background);
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Insights Section */
.insights-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.insights-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.insight-card {
    padding: 24px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.insight-card h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.insight-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--color-primary);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-primary-lighter);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.cta-simple {
    background-color: var(--color-background-alt);
    color: var(--color-text);
}

.cta-simple h2 {
    color: var(--color-text);
}

/* Services Page */
.services-overview {
    padding: 60px 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px 24px;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.service-card-featured {
    border-color: var(--color-primary);
    border-width: 2px;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 4px 12px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-period {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features svg {
    flex-shrink: 0;
}

.service-card .btn {
    width: 100%;
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: var(--color-background-alt);
}

/* Benefits Grid */
.benefit-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* About Page */
.story-section {
    padding: 60px 0;
}

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

.story-content h2 {
    margin-bottom: 24px;
}

.values-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    padding: 32px 24px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 60px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.team-member {
    padding: 24px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.member-avatar {
    margin-bottom: 16px;
}

.team-member h3 {
    margin-bottom: 4px;
}

.member-role {
    display: block;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Timeline */
.milestones-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    font-weight: 700;
    color: var(--color-primary);
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Methodology */
.methodology-section {
    padding: 60px 0;
}

.methodology-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.methodology-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.methodology-item {
    padding: 24px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
}

.methodology-number {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.methodology-item h3 {
    margin-bottom: 8px;
}

.methodology-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Achievements */
.achievements-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.achievement-card {
    padding: 24px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    text-align: center;
}

.achievement-icon {
    margin-bottom: 16px;
}

.achievement-card h3 {
    margin-bottom: 12px;
}

.achievement-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Contact Page */
.contact-info-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px 24px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-icon {
    margin-bottom: 16px;
}

.contact-card h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.contact-description {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Company Info */
.company-info-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.company-info-content h2 {
    margin-bottom: 16px;
}

.company-details {
    margin-top: 24px;
}

.company-details dt {
    font-weight: 600;
    color: var(--color-text);
    margin-top: 16px;
}

.company-details dd {
    color: var(--color-text-light);
}

.company-info-image {
    display: flex;
    justify-content: center;
}

.company-info-image svg {
    max-width: 300px;
}

/* Directions */
.directions-section {
    padding: 60px 0;
}

.directions-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.direction-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
}

.direction-icon {
    flex-shrink: 0;
}

.direction-card h3 {
    margin-bottom: 8px;
}

.direction-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* About Contact */
.about-contact-section {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

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

.about-contact-content h2 {
    margin-bottom: 24px;
}

.about-contact-content .btn {
    margin-top: 16px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 24px;
}

.thank-you-content h1 {
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.thank-you-details {
    text-align: left;
    padding: 24px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.thank-you-details h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.thank-you-details ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--color-text-light);
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Suggested Content */
.suggested-content {
    padding: 60px 0;
    background-color: var(--color-background-alt);
}

.suggested-content h2 {
    text-align: center;
    margin-bottom: 40px;
}

.suggested-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.suggested-card {
    padding: 24px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    text-align: center;
}

.suggested-icon {
    margin-bottom: 16px;
}

.suggested-card h3 {
    margin-bottom: 12px;
}

.suggested-card p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

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

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Legal Pages */
.legal-content {
    padding: 40px 0 60px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-text li {
    margin-bottom: 8px;
    list-style-position: outside;
}

.legal-text ol ol {
    margin-top: 8px;
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookies-table th {
    background-color: var(--color-background-alt);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 60px 0 24px;
    background-color: var(--color-text);
    color: #ffffff;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px;
    background-color: var(--color-background);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.cookie-modal-content {
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.cookie-modal-header h3 {
    margin-bottom: 0;
}

.cookie-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.cookie-modal-close:hover {
    color: var(--color-text);
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-option {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.cookie-option-title {
    font-weight: 600;
}

.cookie-option p {
    margin-top: 8px;
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: 0.875rem;
    padding-left: 32px;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--color-border);
}

.cookie-modal-footer .btn {
    width: 100%;
}

/* Desktop Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        padding-top: 0;
        gap: 32px;
    }

    .nav-menu li a {
        padding: 8px 0;
    }

    .mobile-menu-toggle {
        display: none;
    }

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

    .hero-content {
        flex: 1;
        text-align: left;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-illustration {
        flex: 1;
    }

    .hero-illustration svg {
        max-width: 400px;
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
    }

    .features-grid,
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1 1 calc(50% - 12px);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 12px);
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .insights-grid {
        flex-direction: row;
    }

    .insight-card {
        flex: 1;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 12px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 12px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 12px);
    }

    .methodology-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .methodology-item {
        flex: 1 1 calc(50% - 12px);
    }

    .achievements-grid {
        flex-direction: row;
    }

    .achievement-card {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .company-info-grid {
        flex-direction: row;
        align-items: center;
    }

    .company-info-content {
        flex: 1;
    }

    .company-info-image {
        flex: 1;
    }

    .directions-grid {
        flex-direction: row;
    }

    .direction-card {
        flex: 1;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .suggested-grid {
        flex-direction: row;
    }

    .suggested-card {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 2;
    }

    .footer-links {
        flex: 1;
    }

    .cookie-buttons {
        justify-content: flex-end;
    }

    .cookie-buttons .btn {
        flex: 0 0 auto;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .feature-card {
        flex: 1 1 calc(25% - 18px);
    }

    .process-step {
        flex: 1 1 calc(25% - 18px);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 16px);
    }

    .value-card {
        flex: 1 1 calc(25% - 18px);
    }

    .team-member {
        flex: 1 1 calc(25% - 18px);
    }

    .methodology-item {
        flex: 1 1 calc(33.333% - 16px);
    }

    .benefit-item {
        flex: 1 1 calc(50% - 12px);
    }
}
