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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.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: none;
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

.header-asymmetric {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-zone {
    flex: 0 0 auto;
}

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

.ad-disclosure {
    flex: 1;
    text-align: center;
}

.disclosure-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 3px;
}

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

.nav-offset a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-offset a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-offset a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    position: relative;
    padding: 5rem 2rem 3rem;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    min-width: 320px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    margin-left: 5%;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    color: var(--bg-white);
}

.hero-image-irregular {
    flex: 1;
    min-width: 400px;
    position: relative;
    margin-top: -4rem;
    margin-right: -5%;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-irregular img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-staggered {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.intro-left {
    flex: 1.5;
    min-width: 350px;
    padding-right: 3rem;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.intro-right-elevated {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.stat-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.problem-diagonal {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.diagonal-content {
    transform: skewY(2deg);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
    min-width: 350px;
}

.problem-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.problem-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.problem-visual {
    flex: 1;
    min-width: 350px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.problem-visual img {
    width: 100%;
    height: 450px;
}

.solution-overlap {
    position: relative;
    margin: 5rem 0;
    min-height: 500px;
}

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

.solution-background {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.solution-background img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.solution-text-overlay {
    position: relative;
    z-index: 2;
    background-color: var(--bg-white);
    padding: 3rem;
    max-width: 700px;
    margin-left: 5%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
}

.solution-text-overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.services-cards-irregular {
    padding: 5rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.services-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 8%;
}

.cards-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 380px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-offset-1 {
    margin-top: 2rem;
}

.card-offset-2 {
    margin-top: -1rem;
}

.card-offset-3 {
    margin-top: 1.5rem;
}

.card-offset-4 {
    margin-top: -0.5rem;
}

.card-offset-5 {
    margin-top: 2.5rem;
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.testimonials-scattered h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.testimonial-left {
    margin-top: 2rem;
}

.testimonial-center {
    margin-top: -1rem;
}

.testimonial-right {
    margin-top: 1.5rem;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
    color: var(--text-light);
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-split {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1.5;
    min-width: 350px;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trust-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.cta-diagonal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.cta-content-angle {
    transform: skewY(2deg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--bg-white);
}

.cta-content-angle h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-angle p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-scroll {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

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

.form-section-offset {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container-irregular {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-left: 10%;
    max-width: 800px;
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-light);
    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);
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    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 {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: rgba(230, 126, 34, 0.05);
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

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

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

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

.footer-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-block h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.footer-block a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: var(--secondary-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 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.page-hero-content {
    flex: 1;
    min-width: 350px;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.page-hero-image {
    flex: 1;
    min-width: 400px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 400px;
}

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

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.story-block {
    flex: 1;
    min-width: 350px;
}

.story-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.story-right-elevated {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.values-diagonal h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.value-card {
    flex: 0 1 calc(50% - 1.5rem);
    min-width: 300px;
    max-width: 550px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-offset-1 {
    margin-top: 1rem;
}

.value-offset-2 {
    margin-top: -1.5rem;
}

.value-offset-3 {
    margin-top: 2rem;
}

.value-offset-4 {
    margin-top: -0.5rem;
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.team-scattered h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.team-member {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-position-1 {
    margin-top: 1.5rem;
}

.team-position-2 {
    margin-top: -1rem;
}

.team-position-3 {
    margin-top: 2rem;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.member-role {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.impact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.impact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.impact-stats-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.impact-stat {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
}

.impact-left {
    margin-top: 2rem;
}

.impact-center {
    margin-top: -1rem;
}

.impact-right {
    margin-top: 1.5rem;
}

.impact-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.impact-stat p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #1f4a5f;
    transform: translateY(-2px);
    color: var(--bg-white);
}

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

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.service-layout-2,
.service-layout-4 {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 350px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-light);
}

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

.service-image {
    flex: 1;
    min-width: 350px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.form-section-services .form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section-services p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-hero {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.contact-details-asymmetric {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info-block {
    flex: 0 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-offset-1 {
    margin-top: 1rem;
}

.contact-offset-2 {
    margin-top: -1rem;
}

.contact-offset-3 {
    margin-top: 1.5rem;
}

.contact-offset-4 {
    margin-top: -0.5rem;
    flex: 1 1 100%;
}

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

.contact-info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-map-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 4rem;
    text-align: center;
}

.map-placeholder {
    padding: 3rem;
}

.map-placeholder p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.contact-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.thanks-info {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-next-steps {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 2rem;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0;
    position: relative;
    font-size: 1.05rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: -2rem;
    width: 1.8rem;
    height: 1.8rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f4a5f;
    color: var(--bg-white);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.legal-page {
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-offset {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

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

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

    .services-title-offset {
        margin-left: 0;
    }
}