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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #6b9e78;
    --accent-color: #d4a574;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    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;
    gap: 1rem;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--gray-color);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-color);
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

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

.hero-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
    max-width: 600px;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-left: -15%;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

.narrow-column-left {
    flex: 1;
    padding-right: 3rem;
}

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

.narrow-column-left p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.visual-card-right {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light-color);
}

.visual-card-right img {
    width: 100%;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 95, 63, 0.9), transparent);
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 1rem;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.section-header-diagonal {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 2rem 0;
    border-left: 6px solid var(--primary-color);
    padding-left: 2rem;
    transform: skewY(-1deg);
}

.section-header-diagonal h2 {
    font-size: 3rem;
    color: var(--primary-color);
    transform: skewY(1deg);
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card.offset-top {
    transform: translateY(-30px);
}

.service-card.offset-bottom {
    transform: translateY(30px);
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

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

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

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--gray-color);
}

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

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: calc(100% - 3rem);
}

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

.form-section-offset {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}

.form-container-asymmetric::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--accent-color);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 0;
}

.form-intro {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

.contact-form {
    position: relative;
    z-index: 1;
}

.selected-service-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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(--primary-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.trust-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--white);
    border-left: 6px solid var(--accent-color);
    transform: rotate(-0.5deg);
}

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

.trust-content-irregular p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.trust-content-irregular a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.trust-content-irregular a:hover {
    text-decoration: underline;
}

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

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-references ol {
    padding-left: 1.5rem;
}

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

.footer-references a {
    color: var(--white);
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-color);
}

.about-hero {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.about-header-offset {
    max-width: 1200px;
    margin: 0 auto;
    transform: translateX(-50px);
}

.about-header-offset h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-header-offset p {
    font-size: 1.5rem;
    color: var(--gray-color);
}

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

.story-block-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light-color);
}

.story-block-left img {
    width: 100%;
    display: block;
}

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

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

.story-content-right p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.expertise-section {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.expertise-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.expertise-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
}

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

.expertise-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.expertise-item.large {
    flex: 1 1 100%;
}

.expertise-item.medium {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.expertise-item.small {
    flex: 1 1 calc(33% - 1rem);
    min-width: 250px;
}

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

.values-section-asymmetric {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.values-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light-color);
}

.values-visual img {
    width: 100%;
    display: block;
}

.values-content {
    flex: 1;
}

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

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

.values-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.approach-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.approach-content-centered p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.cta-about {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.cta-about p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.services-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.services-hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.5rem;
    color: var(--gray-color);
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail-card.offset-right {
    flex-direction: row;
}

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

.service-detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light-color);
}

.service-detail-visual img {
    width: 100%;
    display: block;
}

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

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

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

.service-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    color: var(--gray-color);
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 4px;
}

.price-label {
    font-size: 1rem;
    color: var(--gray-color);
    margin-right: 1rem;
}

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

.btn-service-select {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.contact-hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.5rem;
    color: var(--gray-color);
}

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

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

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

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

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

.contact-item p {
    color: var(--gray-color);
    line-height: 1.8;
}

.contact-visual-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light-color);
}

.contact-visual-block img {
    width: 100%;
    display: block;
}

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

.contact-additional-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-additional-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.contact-additional-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.map-placeholder {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.map-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-content > p {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 4px;
}

.service-selected-thanks {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

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

.thanks-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light-color);
}

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

.legal-content {
    margin-top: 80px;
    padding: 6rem 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

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

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

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray-color);
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .hero-content-offset {
        clip-path: none;
        padding: 4rem 2rem;
    }

    .hero-visual-block {
        margin-left: 0;
        min-height: 400px;
    }

    .offset-intro,
    .about-story,
    .values-section-asymmetric,
    .service-detail-card,
    .contact-content-asymmetric,
    .thanks-hero {
        flex-direction: column;
    }

    .service-detail-card.offset-left {
        flex-direction: column;
    }

    .hero-content-offset h1,
    .about-header-offset h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .service-blocks {
        flex-direction: column;
    }

    .service-card.offset-top,
    .service-card.offset-bottom {
        transform: none;
    }

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

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

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

    .expertise-item.medium,
    .expertise-item.small {
        flex: 1 1 100%;
    }

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

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

    .section-header-diagonal h2,
    .expertise-header h2 {
        font-size: 2rem;
    }
}