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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b7355;
    --accent-color: #c19a6b;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background-color: #245144;
}

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

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

.header-asymmetric {
    position: relative;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.logo-offset {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    background-color: var(--bg-light);
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 85vh;
}

.hero-text-offset {
    flex: 0 0 45%;
    padding: 8rem 3rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-heading-large {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
}

.hero-image-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-left: -5rem;
    margin-top: 3rem;
    background-color: var(--border-color);
}

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

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

.intro-block-left {
    flex: 1;
    padding-right: 2rem;
}

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

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

.intro-visual-right {
    flex: 0 0 45%;
    position: relative;
    margin-top: -3rem;
    background-color: var(--border-color);
}

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

.services-irregular {
    background-color: var(--bg-light);
    padding: 7rem 2rem 8rem;
    position: relative;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 5rem 8rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.services-header-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    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 24px rgba(0,0,0,0.12);
}

.card-offset-1 {
    flex: 0 0 calc(50% - 1.5rem);
    margin-top: 2rem;
}

.card-offset-2 {
    flex: 0 0 calc(50% - 1.5rem);
    margin-top: -3rem;
}

.card-offset-3 {
    flex: 0 0 calc(50% - 1.5rem);
    margin-top: 4rem;
}

.card-offset-4 {
    flex: 0 0 calc(50% - 1.5rem);
    margin-top: 0;
}

.card-offset-5 {
    flex: 0 0 calc(50% - 1.5rem);
    margin-top: -2rem;
}

.card-offset-6 {
    flex: 0 0 calc(50% - 1.5rem);
    margin-top: 3rem;
}

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

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

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

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.btn-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    background-color: #245144;
}

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

.approach-visual {
    flex: 0 0 40%;
    position: relative;
    margin-left: -5rem;
    margin-bottom: -4rem;
    background-color: var(--border-color);
}

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

.approach-text {
    flex: 1;
    padding-left: 2rem;
}

.approach-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-section-offset {
    background-color: var(--bg-light);
    padding: 7rem 2rem 8rem;
    position: relative;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto 0 10rem;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 0.95rem;
    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 {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.trust-blocks {
    display: flex;
    justify-content: space-around;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.trust-block p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 4rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
    font-weight: 600;
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--bg-light);
}

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

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

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--bg-light);
}

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

.page-hero-offset {
    background-color: var(--bg-light);
    padding: 8rem 2rem 5rem;
    margin-bottom: 4rem;
}

.page-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5rem;
}

.page-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

.story-visual-left {
    flex: 0 0 45%;
    position: relative;
    margin-top: -8rem;
    background-color: var(--border-color);
}

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

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

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

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

.expertise-asymmetric {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
    margin-bottom: 5rem;
}

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

.expertise-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.expertise-item {
    flex: 0 0 calc(50% - 1.5rem);
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.values-content-offset {
    margin-left: 8rem;
}

.values-content-offset h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.values-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-block {
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
    background-color: var(--bg-light);
}

.value-block h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.team-text {
    flex: 1;
    padding-right: 2rem;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.team-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-visual {
    flex: 0 0 40%;
    position: relative;
    margin-top: -3rem;
    margin-right: -5rem;
    background-color: var(--border-color);
}

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

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

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

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--border-color);
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.service-includes {
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-includes ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing-detail {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.services-cta {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.services-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.contact-visual-block {
    flex: 0 0 45%;
    position: relative;
    margin-top: -5rem;
    background-color: var(--border-color);
}

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

.approach-contact {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    background-color: var(--bg-light);
    padding: 4rem 3rem;
}

.approach-contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.approach-contact-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.legal-content {
    line-height: 1.8;
}

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

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

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

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

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

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

.cookie-table {
    margin: 2rem 0;
}

.cookie-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.cookie-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.thanks-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-content {
    background-color: var(--bg-light);
    padding: 5rem 4rem;
    border-radius: 2px;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.thanks-service-info {
    background-color: var(--bg-white);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 3px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin: 4rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 2px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

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

.btn-primary:hover {
    background-color: #245144;
    border-color: #245144;
}

.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(--bg-white);
}

@media (max-width: 1200px) {
    .hero-heading-large {
        font-size: 3.5rem;
    }

    .services-header-offset {
        margin-left: 4rem;
    }

    .form-container-asymmetric {
        margin-left: 5rem;
    }

    .values-content-offset {
        margin-left: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

    .hero-text-offset {
        flex: 1;
        padding: 4rem 2rem;
    }

    .hero-heading-large {
        font-size: 2.5rem;
    }

    .hero-image-wrap {
        margin-left: 0;
        margin-top: 0;
        min-height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-visual-right {
        flex: 1;
        margin-top: 0;
    }

    .services-header-offset {
        margin-left: 2rem;
    }

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

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        flex: 1;
        margin-top: 0;
    }

    .approach-section {
        flex-direction: column;
        gap: 3rem;
    }

    .approach-visual {
        flex: 1;
        margin-left: 0;
        margin-bottom: 0;
    }

    .approach-text {
        padding-left: 0;
    }

    .form-container-asymmetric {
        margin-left: 2rem;
        margin-right: 2rem;
        padding: 3rem 2rem;
    }

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

    .page-hero-content {
        padding-left: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-story,
    .team-approach {
        flex-direction: column;
        gap: 3rem;
    }

    .story-visual-left,
    .team-visual {
        flex: 1;
        margin: 0;
    }

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

    .expertise-item {
        flex: 1;
    }

    .values-content-offset {
        margin-left: 0;
    }

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

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

    .contact-section-split {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-visual-block {
        flex: 1;
        margin-top: 0;
    }

    .trust-blocks {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .thanks-content {
        padding: 3rem 2rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}