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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2a7aa0;
    --accent-color: #e8973f;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.header-asymmetric {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ad-disclosure {
    background: var(--bg-light);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

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

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

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

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

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

.hero-content-left {
    flex: 1;
    padding-right: 2rem;
    margin-left: 3rem;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -2rem;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(232, 151, 63, 0.3);
}

.cta-primary:hover {
    background: #d68530;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 151, 63, 0.4);
}

.intro-block {
    background: var(--bg-light);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.intro-block::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(42, 122, 160, 0.05);
    border-radius: 50%;
}

.content-narrow-offset {
    max-width: 800px;
    margin-left: 15%;
    padding: 2rem 0;
}

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

.content-narrow-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

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

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card.offset-left {
    margin-right: 20%;
    transform: rotate(-1deg);
}

.service-card.offset-right {
    margin-left: 20%;
    transform: rotate(1deg);
}

.service-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

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

.cta-secondary:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateX(5px);
}

.info-overlap {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: flex-start;
}

.info-left {
    flex: 1;
    position: relative;
}

.info-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-right-elevated {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.info-right-elevated h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-right-elevated p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.link-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.benefits-stacked {
    background: var(--primary-color);
    color: #ffffff;
    padding: 5rem 2rem;
}

.benefits-stacked h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.benefit-item:nth-child(1) {
    margin-left: 5%;
}

.benefit-item:nth-child(2) {
    margin-right: 5%;
}

.benefit-item:nth-child(3) {
    margin-left: 10%;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

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

.services-detailed h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-full,
.service-split-left,
.service-split-right,
.service-offset {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-full {
    margin: 0 5%;
}

.service-split-left {
    margin-right: 25%;
}

.service-split-right {
    margin-left: 25%;
}

.service-offset {
    margin-left: 10%;
    margin-right: 10%;
}

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

.service-content p,
.service-split-left p,
.service-split-right p,
.service-offset p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.service-content ul,
.service-split-left ul,
.service-split-right ul,
.service-offset ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-content ul li,
.service-split-left ul li,
.service-split-right ul li,
.service-offset ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-content ul li::before,
.service-split-left ul li::before,
.service-split-right ul li::before,
.service-offset ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.price-highlight {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.cta-service {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.trust-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

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

.trust-content-center p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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(--secondary-color);
}

.btn-submit {
    background: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #d68530;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 151, 63, 0.4);
}

.cta-floating {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 2rem;
    text-align: center;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-floating::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

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

.cta-final {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-final:hover {
    background: #d68530;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.disclaimer-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin-top: 5rem;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.disclaimer-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-irregular {
    background: var(--text-dark);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col:nth-child(1) {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

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

.page-hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.hero-text-right {
    max-width: 800px;
    margin-left: auto;
    margin-right: 5%;
}

.hero-text-right h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text-right p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.story-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.story-content-narrow {
    max-width: 750px;
    margin-left: 12%;
}

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

.story-content-narrow p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-overlap {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.values-left-elevated {
    flex: 1.2;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    margin-right: -2rem;
    z-index: 2;
}

.values-left-elevated h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

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

.values-image-right {
    flex: 1;
}

.values-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.approach-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.approach-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.approach-card.offset-1 {
    margin-right: 20%;
}

.approach-card.offset-2 {
    margin-left: 15%;
}

.approach-card.offset-3 {
    margin-left: 10%;
    margin-right: 10%;
}

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

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

.mission-full {
    background: var(--bg-light);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.cta-about {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-about h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.page-hero-center {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

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

.services-intro {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.intro-offset-left {
    max-width: 800px;
    margin-left: 10%;
}

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

.intro-offset-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-list {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item-left,
.service-item-right,
.service-item-center {
    display: flex;
    justify-content: flex-start;
}

.service-item-left {
    justify-content: flex-start;
}

.service-item-right {
    justify-content: flex-end;
}

.service-item-center {
    justify-content: center;
}

.service-content-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    border-top: 4px solid var(--accent-color);
}

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

.service-content-box h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

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

.service-content-box ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-content-box ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.service-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.duration {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cta-service-page {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.how-it-works {
    background: var(--bg-light);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.how-it-works h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.steps-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step.offset-step-1 {
    margin-right: 15%;
}

.step.offset-step-2 {
    margin-left: 10%;
}

.step.offset-step-3 {
    margin-right: 10%;
}

.step.offset-step-4 {
    margin-left: 15%;
}

.step-number {
    background: var(--accent-color);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.cta-services {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-services h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

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

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

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

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

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

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

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

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-right {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

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

.contact-form-right > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.faq-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

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

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

.thanks-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-details {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.next-steps {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.step-icon {
    background: var(--accent-color);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

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

.thanks-service-info {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

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

.thanks-service-info p {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-resources {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-resources h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.resource-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-contact {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.thanks-contact p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

.legal-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

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

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

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

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .hero-content-left {
        margin-left: 0;
        padding-right: 0;
    }

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

    .hero-image-right {
        margin-top: 0;
    }

    .info-overlap,
    .values-overlap {
        flex-direction: column;
        gap: 2rem;
    }

    .values-left-elevated {
        margin-right: 0;
    }

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

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

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

    .nav-links a {
        font-size: 0.9rem;
    }

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

    .hero-content-left p {
        font-size: 1.1rem;
    }

    .content-narrow-offset,
    .story-content-narrow {
        margin-left: 0;
    }

    .content-narrow-offset h2 {
        font-size: 2rem;
    }

    .service-card.offset-left,
    .service-card.offset-right {
        margin: 0;
        transform: none;
    }

    .service-split-left,
    .service-split-right,
    .service-offset,
    .service-full {
        margin: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .intro-offset-left {
        margin-left: 0;
    }

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

    .approach-card.offset-1,
    .approach-card.offset-2,
    .approach-card.offset-3 {
        margin: 0;
    }

    .step.offset-step-1,
    .step.offset-step-2,
    .step.offset-step-3,
    .step.offset-step-4 {
        margin: 0;
    }

    .benefit-item:nth-child(1),
    .benefit-item:nth-child(2),
    .benefit-item:nth-child(3) {
        margin: 0;
    }

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

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content-left h1 {
        font-size: 1.8rem;
    }

    .page-hero-center h1,
    .hero-text-right h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}