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

:root {
    --primary: #1a5f7a;
    --primary-dark: #134b61;
    --secondary: #57c5b6;
    --accent: #159895;
    --dark: #1a2238;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo svg {
    width: 40px;
    height: 40px;
}

.nav {
    display: none;
}

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main content */
main {
    padding-top: 80px;
}

/* Section base */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.section-accent h2,
.section-accent h3 {
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

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

.hero-text h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.hero-graphic svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--gray);
}

/* Service cards */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary);
}

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

.service-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

/* Features */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-content h4 {
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--gray);
    margin: 0;
}

/* Stats */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1 1 140px;
    max-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.section-dark .stat-number {
    color: var(--secondary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info strong {
    display: block;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Process */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-content h4 {
    margin-bottom: 8px;
}

.process-content p {
    color: var(--gray);
    margin: 0;
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-alt .faq-item {
    background: var(--white);
}

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

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--gray);
    margin: 0;
}

.contact-details a {
    color: var(--primary);
}

/* Industries */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1 1 140px;
    max-width: 180px;
    text-align: center;
    transition: var(--transition);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-item svg {
    width: 50px;
    height: 50px;
}

.industry-item span {
    font-weight: 500;
    color: var(--dark);
}

/* Values */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.value-content h4 {
    margin-bottom: 8px;
}

.value-content p {
    color: var(--gray);
    margin: 0;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--secondary);
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 3px solid var(--secondary);
    border-radius: 50%;
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

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

.timeline-content p {
    color: var(--gray);
    margin: 0;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

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

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

.comparison-table tr:hover td {
    background: var(--light);
}

/* Quote block */
.quote-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    margin: 40px 0;
}

.quote-block blockquote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-block cite {
    font-style: normal;
    opacity: 0.9;
}

/* Panel */
.highlight-panel {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px 30px;
    border-left: 5px solid var(--primary);
}

.highlight-panel h3 {
    margin-bottom: 15px;
}

/* Team */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team-member {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.team-member h4 {
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

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

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--secondary);
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-btn-accept:hover {
    background: var(--accent);
    color: var(--white);
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-btn-settings:hover {
    border-color: var(--white);
}

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

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

.cookie-modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 25px 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    padding: 0;
    line-height: 1;
}

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

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

.cookie-modal-body p {
    color: var(--gray);
    margin-bottom: 25px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.cookie-option-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.cookie-option-info p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-light);
    border-radius: 26px;
    transition: var(--transition);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 0 25px 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

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

.legal-content h1 {
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.legal-content p {
    color: var(--gray);
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--gray);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Thank you page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thank-you-content svg {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

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

.thank-you-content p {
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

/* Alt blocks */
.content-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block-text h3 {
    margin-bottom: 15px;
}

.content-block-text p {
    color: var(--gray);
}

.content-block-graphic {
    display: flex;
    justify-content: center;
}

.content-block-graphic svg {
    width: 100%;
    max-width: 350px;
    height: auto;
}

/* Benefits list */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-check svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

.benefit-item p {
    margin: 0;
    padding-top: 3px;
}

/* Page header */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About story */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text p {
    color: var(--gray);
    font-size: 1.05rem;
}

.story-graphic {
    display: flex;
    justify-content: center;
}

.story-graphic svg {
    width: 100%;
    max-width: 400px;
}

/* Icon list */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icon-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-list-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: var(--primary);
    margin-top: 2px;
}

.icon-list-item p {
    margin: 0;
    color: var(--gray);
}

/* Responsive */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 100px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

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

    .hero-text {
        flex: 1;
    }

    .hero-graphic {
        flex: 1;
    }

    .nav {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-list {
        flex-direction: row;
        gap: 30px;
    }

    .menu-toggle {
        display: none;
    }

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

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

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

    .feature-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .testimonial-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .contact-info {
        flex: 1;
    }

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

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

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

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

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

    .footer-col {
        flex: 1 1 200px;
    }

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .content-block {
        flex-direction: row;
        align-items: center;
    }

    .content-block:nth-child(even) {
        flex-direction: row-reverse;
    }

    .content-block-text,
    .content-block-graphic {
        flex: 1;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text,
    .story-graphic {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .value-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}
