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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    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;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

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

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.7rem;
    background-color: var(--bg-light);
    border-radius: 3px;
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
}

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: stretch;
    position: relative;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content-offset h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content-offset p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 500px;
}

.hero-image-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #95a5a6;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-block-left {
    flex: 1;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-block-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.intro-visual-right {
    flex: 0 0 40%;
    background-color: #bdc3c7;
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
}

.services-preview-scattered {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.services-preview-scattered h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 350px;
}

.card-offset {
    flex: 1 1 calc(38% - 1rem);
    min-width: 300px;
    margin-top: 3rem;
}

.card-small {
    flex: 1 1 calc(33% - 1.5rem);
    min-width: 280px;
}

.card-medium {
    flex: 1 1 calc(48% - 1rem);
    min-width: 320px;
}

.card-overlap {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    margin-top: -2rem;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #95a5a6;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.price-tag {
    padding: 0 1.5rem 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
}

.select-service:hover {
    background-color: #2980b9;
}

.trust-block-inline {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-content-narrow {
    text-align: left;
}

.trust-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.form-section-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.form-visual-left {
    flex: 0 0 40%;
    background-color: #95a5a6;
}

.form-visual-left img {
    width: 100%;
    height: 100%;
}

.form-container-right {
    flex: 1;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
}

.form-container-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container-right p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
}

.btn-submit:hover {
    background-color: #d35400;
}

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

.testimonials-scattered h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.card-pos-1 {
    margin-top: 0;
}

.card-pos-2 {
    margin-top: 2rem;
}

.card-pos-3 {
    margin-top: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1rem;
}

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.page-hero-simple {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background-color: var(--bg-light);
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero-simple p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story-offset {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-content-wide {
    flex: 1;
}

.story-content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-content-wide p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.story-visual-corner {
    flex: 0 0 35%;
    background-color: #95a5a6;
    margin-top: 3rem;
}

.story-visual-corner img {
    width: 100%;
    height: 100%;
}

.values-section-inline {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-section-inline h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.value-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.team-approach-split {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text-left {
    flex: 1;
}

.approach-text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-text-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-image-right {
    flex: 0 0 45%;
    background-color: #95a5a6;
}

.approach-image-right img {
    width: 100%;
    height: 100%;
}

.certifications-inline {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

.certifications-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.certifications-inline p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-detailed-asymmetric {
    padding: 3rem 2rem;
}

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.block-right {
    flex-direction: row;
}

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

.block-center {
    justify-content: center;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #95a5a6;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.block-full-width {
    flex-direction: column;
}

.service-detail-premium {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.service-detail-premium h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-premium > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.premium-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-column {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 5px;
}

.feature-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-column ul {
    list-style: none;
}

.feature-column li {
    padding: 0.4rem 0 0.4rem 1.2rem;
    position: relative;
    color: var(--text-dark);
}

.feature-column li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin: 2rem 0 1rem;
}

.price-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-detail-full {
    width: 100%;
}

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

.service-text-half {
    flex: 1;
}

.service-image-half {
    flex: 0 0 45%;
    background-color: #95a5a6;
}

.service-image-half img {
    width: 100%;
    height: 100%;
}

.pricing-info-block {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.pricing-info-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pricing-info-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-layout-offset {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-item {
    margin-bottom: 3rem;
}

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

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.email-display {
    font-weight: 600;
    color: var(--secondary-color);
}

.email-note,
.schedule-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-visual-right {
    flex: 0 0 40%;
    background-color: #95a5a6;
}

.contact-visual-right img {
    width: 100%;
    height: 100%;
}

.contact-additional-info {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.contact-additional-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.info-blocks-scattered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-card {
    flex: 1 1 calc(33% - 1.5rem);
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.info-card p {
    line-height: 1.6;
}

.service-areas {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-areas h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-areas > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-item {
    flex: 1 1 calc(33% - 1.5rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.area-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.area-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.areas-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.thanks-container {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.thanks-main {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-service-info {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
    margin-bottom: 2rem;
}

.thanks-service-info p {
    font-size: 1.1rem;
}

.thanks-next-steps h2,
.thanks-additional-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-additional-info {
    margin: 2rem 0;
}

.thanks-additional-info p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #2980b9;
}

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

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

.thanks-visual {
    flex: 0 0 40%;
    background-color: #95a5a6;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.legal-page-container {
    padding: 3rem 2rem 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

.cookies-table td {
    background-color: white;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        flex: 1;
    }

    .hero-image-block {
        height: 400px;
    }

    .intro-offset,
    .form-section-asymmetric,
    .about-story-offset,
    .team-approach-split,
    .contact-layout-offset,
    .thanks-container {
        flex-direction: column;
    }

    .intro-visual-right,
    .form-visual-left,
    .story-visual-corner,
    .approach-image-right,
    .contact-visual-right,
    .thanks-visual {
        flex: 1;
        min-height: 300px;
    }

    .service-detail-block {
        flex-direction: column !important;
    }

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

    .premium-features {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

    h2 {
        font-size: 1.8rem !important;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}