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

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2874bf;
    --accent-color: #e74c3c;
    --dark-color: #1a1a1a;
    --light-gray: #f4f4f4;
    --medium-gray: #e0e0e0;
    --text-color: #333;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

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

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

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.nav-cta {
    background: var(--accent-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.nav-cta:hover {
    background: #c0392b;
    color: #fff;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--light-gray);
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary,
.btn-secondary,
.btn-large,
.btn-submit {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    margin-right: 1rem;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: #fff;
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-large {
    background: var(--accent-color);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-large:hover {
    background: #c0392b;
    color: #fff;
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    width: 100%;
}

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

.trust-strip {
    background: var(--primary-color);
    color: #fff;
    padding: 1.5rem 2rem;
    text-align: center;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-split-intro {
    display: flex;
    min-height: 500px;
    margin: 4rem 0;
}

.split-right-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left-img {
    flex: 1;
    overflow: hidden;
}

.split-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.split-right-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.split-right-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.routes-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.routes-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.routes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.route-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.route-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.route-card p {
    color: #666;
    line-height: 1.6;
}

.why-us-offset {
    display: flex;
    margin: 5rem 0;
    min-height: 600px;
}

.offset-left {
    flex: 0.8;
    overflow: hidden;
}

.offset-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offset-right {
    flex: 1.2;
    padding: 4rem 3rem;
    background: #fff;
}

.offset-right h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.reasons-list {
    list-style: none;
}

.reasons-list li {
    margin-bottom: 2rem;
}

.reasons-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reasons-list p {
    color: #666;
    line-height: 1.6;
}

.services-pricing {
    padding: 5rem 0;
}

.services-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-card.featured {
    border-color: var(--primary-color);
    background: #f8fafc;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    min-height: 60px;
}

.price-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 80px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.price-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.btn-select {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-select:hover {
    background: var(--secondary-color);
    color: #fff;
}

.testimonials-minimal {
    background: var(--light-gray);
    padding: 5rem 0;
}

.testimonials-minimal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.author {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
}

.form-section-split {
    display: flex;
    margin: 5rem 0;
    min-height: 600px;
}

.form-left {
    flex: 1;
    background: var(--primary-color);
    color: #fff;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.form-info {
    list-style: none;
}

.form-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.form-info li:before {
    content: "→";
    position: absolute;
    left: 0;
}

.form-right {
    flex: 1;
    background: var(--light-gray);
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.final-cta {
    background: var(--dark-color);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #bdc3c7;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #c0392b;
}

.btn-cookie-reject {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-cookie-reject:hover {
    background: #fff;
    color: #000;
}

.page-hero-simple {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.7;
}

.services-detail {
    padding: 4rem 0;
}

.service-block {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-text h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.service-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.equipment-info {
    background: var(--light-gray);
    padding: 5rem 0;
}

.equipment-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.equipment-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.equipment-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.equipment-item p {
    color: #666;
    line-height: 1.6;
}

.cta-services {
    padding: 5rem 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-hero-split {
    display: flex;
    min-height: 600px;
}

.about-left {
    flex: 1.2;
    padding: 4rem 3rem;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-left h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-right {
    flex: 0.8;
    overflow: hidden;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.timeline-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    gap: 2rem;
}

.timeline-year {
    flex: 0 0 100px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.team-philosophy {
    padding: 5rem 0;
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.split-img {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-section {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 0;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.certifications {
    padding: 5rem 0;
}

.certifications h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid var(--medium-gray);
}

.cert-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-about {
    background: var(--light-gray);
    padding: 5rem 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-hero {
    background: var(--primary-color);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 3rem;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #999;
    margin-top: 0.5rem;
}

.contact-map-box {
    flex: 1;
}

.contact-map-box img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.map-caption {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.cta-contact {
    padding: 5rem 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
    min-height: 60vh;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: left;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-selected {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin: 2rem 0;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 0;
}

.legal-intro {
    font-style: italic;
    color: #999;
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .services-split-intro,
    .why-us-offset,
    .form-section-split,
    .about-hero-split,
    .service-block,
    .split-content,
    .contact-grid {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-right-text,
    .offset-right,
    .form-left,
    .about-left {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 0.5rem 0;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero-simple h1 {
        font-size: 2rem;
    }

    .about-left h1 {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}