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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    z-index: 1000;
    padding: 15px 30px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d6187;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d6187;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 5px 12px;
    background: #f4f4f4;
    border-radius: 20px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 10%;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #2d6187;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 97, 135, 0.3);
}

.cta-primary:hover {
    background: #234d6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 97, 135, 0.4);
}

.trust-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.trust-container-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-block-1 {
    flex: 1.2;
    padding-left: 5%;
}

.trust-block-1 h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-block-1 p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.trust-block-2 {
    flex: 0.8;
    padding: 50px;
    border-radius: 15px;
    transform: rotate(-2deg);
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #2d6187;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.services-asymmetric {
    padding: 120px 20px;
    background: #fff;
}

.services-header-offset {
    max-width: 600px;
    margin: 0 0 80px 8%;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    display: flex;
    flex-direction: column;
}

.service-card-small {
    flex: 1 1 calc(40% - 15px);
    display: flex;
    flex-direction: column-reverse;
}

.service-card-medium {
    flex: 1 1 calc(45% - 15px);
}

.service-card-wide {
    flex: 1 1 calc(55% - 15px);
    display: flex;
}

.service-card-tall {
    flex: 1 1 calc(35% - 15px);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card-wide .service-image {
    width: 45%;
    height: auto;
}

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

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

.service-content {
    padding: 35px;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 25px 0;
    letter-spacing: -0.5px;
}

.btn-select-service {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.service-card-medium .service-content,
.service-card-medium {
    color: #333;
}

.service-card-medium .btn-select-service {
    background: #2d6187;
    border-color: #2d6187;
}

.service-card-medium .btn-select-service:hover {
    background: #234d6d;
}

.testimonials-offset {
    padding: 100px 20px;
    background: #f4f7f9;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-card {
    flex: 1;
    padding: 45px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card-2 {
    transform: translateY(50px);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d6187;
}

.form-section-irregular {
    padding: 120px 20px;
    background: linear-gradient(135deg, #2d6187 0%, #4a90a4 100%);
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto 0 10%;
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
}

.form-step {
    display: flex;
    flex-direction: column;
}

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d6187;
}

.selected-service-display {
    padding: 20px;
    background: #f4f7f9;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #2d6187;
    font-weight: 600;
}

.form-hint {
    color: #999;
    font-size: 0.95rem;
}

.btn-submit {
    padding: 18px 40px;
    background: #2d6187;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #234d6d;
    transform: translateY(-2px);
}

.insights-overlap {
    padding: 100px 20px;
    background: #fff;
}

.insights-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.insights-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    max-width: 600px;
}

.insights-content > p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 50px;
}

.insight-image {
    width: 55%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin-left: auto;
    transform: rotate(-3deg);
}

.insight-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-column-main {
    flex: 1.5;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d6187;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-column p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-cookie-accept {
    background: #2d6187;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #234d6d;
}

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

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

.about-hero-offset {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 80px;
    position: relative;
}

.about-hero-content {
    max-width: 700px;
    margin-left: 8%;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.about-hero-image {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 45%;
    height: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-section-irregular {
    padding: 100px 20px;
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    flex: 1;
    padding: 50px;
    border-radius: 15px;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-block-right {
    transform: translateY(50px);
}

.values-asymmetric {
    padding: 100px 20px;
    background: #f9fafb;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    margin-left: 5%;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card-2 {
    color: #fff;
    transform: rotate(-2deg);
}

.value-card-4 {
    transform: translateY(-30px);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.approach-section {
    padding: 100px 20px;
    background: #fff;
}

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

.approach-content-offset h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d6187;
    opacity: 0.3;
    min-width: 80px;
}

.approach-step h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-step p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.team-overlap {
    padding: 100px 20px;
    background: #f4f7f9;
}

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

.team-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-content > p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.team-image {
    width: 70%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin: 0 auto 30px;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-note {
    font-size: 1.05rem;
    color: #666;
    font-style: italic;
    padding: 25px;
    background: #fff;
    border-left: 4px solid #2d6187;
    border-radius: 10px;
}

.cta-section-irregular {
    padding: 120px 20px;
    background: linear-gradient(135deg, #364f6b 0%, #2d6187 100%);
}

.cta-content-offset {
    max-width: 700px;
    margin: 0 auto 0 10%;
    text-align: left;
}

.cta-content-offset h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

.cta-content-offset p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: #2d6187;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.services-hero-irregular {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #e8eef3 100%);
}

.services-hero-content-offset {
    max-width: 700px;
    margin-left: 10%;
}

.services-hero-content-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
    line-height: 1.1;
}

.services-hero-content-offset p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-2,
.service-detail-4 {
    padding: 80px 60px;
    border-radius: 20px;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 25px 0 30px 20px;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0;
}

.price-label {
    font-size: 1.1rem;
    color: #777;
    font-weight: 600;
}

.price-value {
    font-size: 2.5rem;
    color: #2d6187;
    font-weight: 800;
}

.btn-select-service-detail {
    padding: 15px 35px;
    background: #2d6187;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service-detail:hover {
    background: #234d6d;
    transform: translateY(-2px);
}

.services-cta-irregular {
    padding: 100px 20px;
    background: #f9fafb;
}

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

.services-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: #2d6187;
    border: 3px solid #2d6187;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: #2d6187;
    color: #fff;
    transform: translateY(-2px);
}

.contact-hero-asymmetric {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #2d6187 0%, #4a90a4 100%);
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.contact-info-irregular {
    padding: 100px 20px;
    background: #fff;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-block-main {
    flex: 1;
    padding: 50px;
}

.contact-block-main h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d6187;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.contact-block-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    transform: rotate(2deg);
}

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

.contact-approach {
    padding: 100px 20px;
    background: #f9fafb;
}

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

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-item-offset {
    margin-left: 10%;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: #2d6187;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.contact-faq-irregular {
    padding: 100px 20px;
    background: #fff;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    padding: 35px;
    background: #f9fafb;
    border-radius: 15px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.contact-cta-offset {
    padding: 120px 20px;
    background: linear-gradient(135deg, #364f6b 0%, #2d6187 100%);
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 80px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirmation {
    padding: 25px;
    background: #f4f7f9;
    border-radius: 15px;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #2d6187;
    font-weight: 600;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.next-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: #f9fafb;
    border-radius: 15px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #2d6187;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.step-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #2d6187;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #234d6d;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #2d6187;
    border: 2px solid #2d6187;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2d6187;
    color: #fff;
}

.legal-page {
    padding: 140px 20px 80px;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-intro {
    font-size: 1rem;
    color: #999;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #2d6187;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0 20px 30px;
}

.legal-section ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section a {
    color: #2d6187;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #234d6d;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        margin-left: 5%;
    }

    .hero-image-overlap {
        width: 50%;
        right: 0;
    }

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

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

    .service-card-wide {
        flex-direction: column;
    }

    .service-card-wide .service-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 12px 20px;
    }

    .nav-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        margin-top: 40px;
    }

    .trust-container-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .trust-block-1 {
        padding-left: 0;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .testimonial-card-2 {
        transform: none;
    }

    .form-container-offset {
        margin: 0 auto;
        padding: 40px 25px;
    }

    .story-section-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .story-block-right {
        transform: none;
    }

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

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

    .value-card-4 {
        transform: none;
    }

    .approach-step-offset {
        margin-left: 0;
    }

    .service-detail {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-2 .service-detail-content,
    .service-detail-4 .service-detail-content {
        order: 2;
    }

    .contact-info-container {
        flex-direction: column;
    }

    .timeline-item-offset {
        margin-left: 0;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }
}