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

:root {
    --primary-color: #1a2935;
    --secondary-color: #3d5a6b;
    --accent-color: #7d9ba8;
    --light-bg: #f8fafb;
    --text-dark: #1a2935;
    --text-light: #5a6d7a;
    --border-color: #e1e8ed;
}

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

.ad-disclosure {
    background-color: #fef7e6;
    color: #8b6914;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.813rem;
    border-bottom: 1px solid #e8d6a3;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: relative;
    z-index: 50;
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 540px;
    margin-left: 2rem;
}

.hero-text-block h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

.hero-text-block p {
    font-size: 1.188rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-irregular {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-image-irregular img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-offset {
    display: flex;
    align-items: flex-start;
    padding: 7rem 5% 7rem 12%;
    gap: 4rem;
    background-color: var(--light-bg);
}

.intro-narrow {
    flex: 1;
    max-width: 580px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-image-float {
    flex: 0 0 380px;
    height: 460px;
    overflow: hidden;
    border-radius: 6px;
    margin-top: -3rem;
}

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

.services-staggered {
    padding: 8rem 5%;
    background-color: #ffffff;
}

.section-header-left {
    max-width: 640px;
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.section-header-left h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-left p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.service-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}

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

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

.service-card-wide {
    flex: 1 1 calc(66.666% - 1rem);
}

.service-card-tall .service-image {
    height: 340px;
}

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

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.btn-select-service {
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.btn-select-service.selected {
    background-color: #2d7a4f;
}

.form-section-offset {
    padding: 6rem 5% 6rem 15%;
    background-color: #f1f5f8;
}

.form-container {
    max-width: 680px;
}

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

.form-container > p {
    font-size: 1.063rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-display {
    padding: 1.25rem;
    background-color: #e8f0f5;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    margin-bottom: 1rem;
}

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

#service-name-display {
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.938rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

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

.process-diagonal {
    display: flex;
    min-height: 600px;
    background-color: var(--primary-color);
    color: #ffffff;
}

.process-content {
    flex: 1;
    padding: 5rem 5% 5rem 8%;
}

.process-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d4dfe6;
}

.process-image {
    flex: 0 0 420px;
    overflow: hidden;
}

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

.materials-section {
    padding: 7rem 5%;
    background-color: #ffffff;
}

.materials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.materials-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.material-block {
    flex: 1;
    max-width: 360px;
    padding: 2.5rem;
    border-radius: 8px;
}

.material-block h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.material-block p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--text-light);
}

.footer-irregular {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column-main {
    flex: 1.5;
    max-width: 420px;
}

.footer-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: #d4dfe6;
}

.footer-note {
    font-size: 0.813rem;
    color: #a8bcc8;
    margin-top: 1.5rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #d4dfe6;
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #a8bcc8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 41, 53, 0.97);
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.938rem;
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #236138;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #5a6d7a;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4a5d6a;
    transform: translateY(-2px);
}

.page-header-offset {
    padding: 6rem 5% 4rem 12%;
    background-color: var(--light-bg);
}

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

.header-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-story {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-image-left {
    flex: 0 0 480px;
    height: 560px;
    overflow: hidden;
    border-radius: 8px;
}

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

.story-text-right {
    flex: 1;
    max-width: 640px;
}

.story-text-right h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text-right p {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.about-approach {
    padding: 6rem 5%;
    background-color: var(--light-bg);
}

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

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

.approach-content-center p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.team-section {
    padding: 7rem 5%;
}

.team-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.team-member {
    flex: 0 0 320px;
}

.member-image {
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.member-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 0.938rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.member-info p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.values-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.value-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    max-width: 480px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.value-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section-about {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.btn-cta-large:hover {
    background-color: var(--light-bg);
    transform: translateY(-3px);
}

.services-detailed {
    padding: 4rem 5%;
}

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

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

.service-detail-content {
    flex: 1;
    max-width: 600px;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 0.938rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

.service-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.btn-service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.service-detail-image {
    flex: 0 0 480px;
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
}

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

.pricing-info {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

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

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

.pricing-block {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.pricing-block h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-block p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section-services {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section-services .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section-services .cta-content p {
    font-size: 1.125rem;
    color: #d4dfe6;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 4rem 5%;
}

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

.contact-info-block {
    flex: 1;
    max-width: 520px;
}

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

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 480px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: var(--text-dark);
}

.map-overlay p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 0.938rem;
    color: var(--text-light);
}

.contact-form-page {
    padding: 4rem 5%;
    background-color: var(--light-bg);
}

.contact-form-page .form-container {
    max-width: 680px;
    margin: 0 auto;
}

.contact-form-page .form-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-form-page .form-container p {
    font-size: 1.063rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-form-page .form-container a {
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-section {
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 720px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.thanks-service-info .service-label {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.thanks-service-info .service-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-back-home,
.btn-view-services {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-back-home {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

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

.btn-view-services:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-page {
    padding: 4rem 5%;
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
}

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

.legal-date {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

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

    .hero-content-offset,
    .hero-image-irregular {
        width: 100%;
    }

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

    .intro-offset {
        flex-direction: column;
        padding: 4rem 5%;
    }

    .intro-image-float {
        margin-top: 2rem;
    }

    .service-grid-irregular {
        justify-content: center;
    }

    .service-card,
    .service-card-wide {
        flex: 1 1 calc(50% - 1rem);
    }

    .form-section-offset {
        padding: 4rem 5%;
    }

    .process-diagonal {
        flex-direction: column;
    }

    .process-image {
        flex: 0 0 auto;
        height: 400px;
        width: 100%;
    }

    .about-story {
        flex-direction: column;
    }

    .story-image-left {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
    }

    .service-detail-item,
    .service-detail-reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}

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

    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-text-block {
        margin-left: 0;
    }

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

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

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .btn-back-home,
    .btn-view-services {
        width: 100%;
        text-align: center;
    }
}