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

:root {
    --primary-color: #1a5490;
    --secondary-color: #f57c00;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #2e7d32;
    --white: #ffffff;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

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

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

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

ul {
    list-style: none;
}

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

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

.centered {
    text-align: center;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    display: block;
    transition: all 0.3s ease;
}

.hero-split {
    min-height: 600px;
    padding: 0;
}

.split-container {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px 50px;
    background: var(--light-bg);
}

.split-right {
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-bg);
    font-weight: 700;
}

.hero-content .lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-service,
.btn-light {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: #134078;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

.btn-light:hover {
    background: transparent;
    color: var(--white);
}

.trust-markers {
    padding: 60px 20px;
    background: var(--white);
}

.markers-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.marker {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.marker-icon {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.marker h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.intro-split {
    padding: 0;
}

.intro-split .split-container {
    min-height: 500px;
}

.intro-split.reverse .split-container {
    flex-direction: row-reverse;
}

.content-block {
    max-width: 540px;
}

.content-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--dark-bg);
    font-weight: 700;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.services-showcase {
    padding: 80px 20px;
    background: var(--light-bg);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-service {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 100%;
    margin-top: auto;
}

.btn-service:hover {
    background: #134078;
}

.process-split {
    padding: 0;
}

.process-split .split-container {
    min-height: 700px;
}

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

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

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials {
    padding: 80px 20px;
    background: var(--white);
}

.testimonials h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-author strong {
    font-size: 16px;
    color: var(--dark-bg);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.cta-split {
    padding: 0;
}

.cta-split .split-container {
    min-height: 400px;
}

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

.cta-content {
    max-width: 540px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-form-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
}

.service-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.checkbox-group a {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    padding: 16px;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #e67100;
    transform: translateY(-2px);
}

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #1a4070);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.page-hero.small {
    padding: 60px 20px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro-split .split-container,
.team-split .split-container {
    min-height: 500px;
}

.values {
    padding: 80px 20px;
    background: var(--light-bg);
}

.values h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 260px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.certifications {
    padding: 80px 20px;
    background: var(--white);
}

.certifications h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.certifications p {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-item {
    background: var(--light-bg);
    padding: 20px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    border-left: 4px solid var(--secondary-color);
}

.cta-simple {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.cta-simple h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-simple p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 80px 20px;
    background: var(--white);
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    gap: 40px;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-card.reverse .service-detail-split {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex: 1;
    min-width: 300px;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-detail-right {
    flex: 1.2;
    padding: 40px;
}

.service-detail-right h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.price-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    background: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-detail-right > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-detail-right h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 24px 0 16px 0;
}

.service-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.service-checklist li {
    font-size: 15px;
    color: var(--text-color);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.service-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-info {
    padding: 60px 20px;
    background: var(--light-bg);
}

.service-info h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--dark-bg);
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 280px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-split .split-container {
    min-height: 600px;
}

.contact-info-block {
    max-width: 540px;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.map-section {
    padding: 80px 20px;
    background: var(--white);
}

.map-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-bg);
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.9);
    padding: 20px;
    color: var(--white);
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.emergency-cta {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.emergency-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.emergency-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-section {
    padding: 100px 20px;
    background: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 24px;
}

.thanks-section h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.selected-service-info {
    background: var(--white);
    padding: 20px 28px;
    border-radius: 6px;
    margin-bottom: 32px;
    border-left: 4px solid var(--secondary-color);
    font-size: 16px;
    color: var(--text-color);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    padding: 80px 20px;
    background: var(--white);
}

.next-steps h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.step-card .step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 20px;
    background: var(--white);
}

.legal-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-intro {
    font-size: 17px;
    color: var(--text-light);
    background: var(--light-bg);
    padding: 20px 28px;
    border-radius: 6px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.legal-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 40px 0 20px 0;
}

.legal-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 28px 0 14px 0;
}

.legal-text p {
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0 24px 20px;
}

.legal-text li {
    list-style: disc;
    margin-bottom: 10px;
    padding-left: 8px;
}

.legal-text strong {
    font-weight: 700;
    color: var(--dark-bg);
}

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        min-height: auto;
    }

    .intro-split.reverse .split-container,
    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 50px 30px;
    }

    .split-right img {
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

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

    .service-detail-split {
        flex-direction: column;
    }

    .service-detail-left img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.active ul {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .section-header h2,
    .content-block h2 {
        font-size: 28px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .markers-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .form-row {
        flex-direction: column;
    }

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

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

    .split-left,
    .split-right {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-light {
        width: 100%;
    }

    .service-form,
    .contact-form-wrapper {
        padding: 24px;
    }
}