* {
    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: #ffffff;
}

.main-header {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2962ff;
    letter-spacing: -0.5px;
}

.ad-label {
    position: absolute;
    right: 2rem;
    top: 0.5rem;
    font-size: 0.75rem;
    color: #757575;
    background-color: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    margin-right: 180px;
}

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

.main-nav a:hover {
    color: #2962ff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #424242;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 8%;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateY(-30px);
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 65%;
    height: 75%;
    z-index: 1;
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
    transform: translateX(5%);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2962ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.25);
}

.cta-primary:hover {
    background-color: #1e4ed8;
    transform: translateY(-2px);
}

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

.intro-left {
    flex: 0 0 45%;
    transform: translateX(-50px);
}

.intro-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.intro-right {
    flex: 1;
    transform: translateY(30px);
}

.intro-right h2 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-right p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-irregular {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 6rem 2rem 8rem;
    position: relative;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: left;
    padding-left: 10%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #757575;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-offset {
    flex: 1 1 calc(40% - 1rem);
    transform: translateY(40px);
}

.card-small {
    flex: 1 1 calc(35% - 1rem);
}

.card-wide {
    flex: 1 1 calc(65% - 1rem);
    transform: translateY(-30px);
}

.card-medium {
    flex: 1 1 calc(50% - 1rem);
}

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

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

.service-content h3 {
    font-size: 1.6rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2962ff;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background-color: #2962ff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1rem;
}

.btn-select-service:hover {
    background-color: #1e4ed8;
    transform: translateY(-2px);
}

.why-section-overlap {
    position: relative;
    padding: 8rem 2rem;
    margin: 6rem 0;
}

.why-background {
    position: absolute;
    top: 15%;
    left: 0;
    width: 85%;
    height: 70%;
    z-index: 1;
}

.why-content-float {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 0 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    width: 75%;
}

.why-content-float h2 {
    font-size: 2.6rem;
    color: #1a237e;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1.25rem);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2962ff;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.benefit-item h4 {
    font-size: 1.4rem;
    color: #1a237e;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-item p {
    color: #546e7a;
    line-height: 1.7;
}

.form-section-diagonal {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8eaf6 0%, #f5f5f5 100%);
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateX(-30px);
    z-index: 10;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    color: #757575;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #424242;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2962ff;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2962ff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1e4ed8;
    transform: translateY(-2px);
}

.form-image-float {
    flex: 0 0 400px;
    height: 500px;
    border-radius: 12px;
    transform: translateY(-50px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.trust-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

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

.trust-content-center h3 {
    font-size: 1.8rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-content-center p {
    color: #546e7a;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a237e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    color: #424242;
    line-height: 1.6;
}

.cookie-content a {
    color: #2962ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-accept {
    background-color: #2962ff;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e0e0e0;
    color: #424242;
}

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

.page-hero-offset {
    display: flex;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-text-left {
    flex: 1;
    padding: 4rem 2rem 4rem 8%;
    max-width: 600px;
    z-index: 10;
}

.hero-text-left h1 {
    font-size: 3rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-left p {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
}

.hero-visual-right {
    flex: 1;
    height: 100%;
    min-height: 500px;
}

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

.story-block-wide {
    flex: 1;
    transform: translateY(50px);
}

.story-block-wide h2 {
    font-size: 2.6rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-block-wide p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image-offset {
    flex: 0 0 45%;
    transform: translateY(-30px);
}

.story-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.values-asymmetric {
    background-color: #f5f7fa;
    padding: 6rem 2rem;
    margin: 4rem 0;
}

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

.values-header h2 {
    font-size: 2.8rem;
    color: #1a237e;
    font-weight: 700;
}

.values-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-left {
    flex: 1 1 calc(55% - 1rem);
    transform: translateX(-30px);
}

.card-right {
    flex: 1 1 calc(45% - 1rem);
    transform: translateX(30px) translateY(40px);
}

.card-center {
    flex: 1 1 calc(60% - 1rem);
    margin: 0 auto;
}

.card-offset-bottom {
    flex: 1 1 calc(50% - 1rem);
    transform: translateY(-40px);
}

.value-card h3 {
    font-size: 1.6rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

.team-section-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 0;
}

.team-image-left {
    flex: 0 0 50%;
    min-height: 500px;
}

.team-content-right {
    flex: 1;
    padding: 4rem;
    background-color: #f5f5f5;
}

.team-content-right h2 {
    font-size: 2.4rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-content-right p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-link {
    display: inline-block;
    color: #2962ff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 2px solid #2962ff;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.cta-link:hover {
    background-color: #2962ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.approach-container h2 {
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.step-item {
    background-color: #f5f7fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.step-large {
    flex: 1 1 calc(60% - 1rem);
}

.step-small {
    flex: 1 1 calc(40% - 1rem);
    transform: translateY(30px);
}

.step-medium {
    flex: 1 1 calc(50% - 1rem);
}

.step-offset {
    flex: 1 1 calc(45% - 1rem);
    transform: translateY(-30px);
}

.step-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #2962ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-item h4 {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-item p {
    color: #546e7a;
    line-height: 1.7;
}

.cta-section-diagonal {
    background: linear-gradient(135deg, #2962ff 0%, #1e4ed8 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-content-float {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-content-float h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.page-hero-centered {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #e8eaf6 0%, #f5f5f5 100%);
}

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

.hero-content-wide h1 {
    font-size: 3.2rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content-wide p {
    font-size: 1.3rem;
    color: #546e7a;
}

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

.service-detail-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

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

.service-full {
    flex-direction: column;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

.service-detail-content p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    color: #1a237e;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #546e7a;
    line-height: 1.7;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2962ff;
    font-weight: 700;
}

.service-detail-image {
    flex: 0 0 40%;
    min-height: 400px;
}

.service-detail-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e8eaf6;
    border-radius: 8px;
}

.price-label {
    font-size: 1rem;
    color: #757575;
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    color: #2962ff;
    font-weight: 700;
}

.service-detail-content-wide {
    padding: 3rem;
}

.service-columns {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.service-column {
    flex: 1;
}

.service-note {
    color: #757575;
    font-size: 0.95rem;
    margin: 1rem 0;
    line-height: 1.6;
}

.service-detail-image-wide {
    width: 100%;
    height: 300px;
}

.comparison-section {
    background-color: #f5f7fa;
    padding: 6rem 2rem;
    margin: 4rem 0;
}

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

.comparison-container h2 {
    font-size: 2.6rem;
    color: #1a237e;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.comparison-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.comparison-item h4 {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-item p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.comparison-link {
    color: #2962ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.comparison-link:hover {
    color: #1e4ed8;
}

.contact-cta-offset {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    margin: 4rem 0;
}

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

.cta-content-irregular h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.contact-hero-split {
    display: flex;
    align-items: stretch;
    min-height: 50vh;
}

.contact-hero-left {
    flex: 1;
    padding: 4rem;
    background-color: #f5f7fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-left h1 {
    font-size: 3rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-hero-left p {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-hero-right {
    flex: 1;
    min-height: 400px;
}

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

.contact-info-offset {
    flex: 1;
    transform: translateY(-50px);
}

.contact-info-offset h2 {
    font-size: 2.4rem;
    color: #1a237e;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.contact-item h4 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-item p {
    color: #546e7a;
    line-height: 1.8;
}

.contact-note {
    background-color: #e8eaf6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    color: #424242;
    line-height: 1.7;
    margin: 0;
}

.contact-visual-float {
    flex: 0 0 45%;
    transform: translateY(30px);
}

.contact-visual-float img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.map-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
}

.location-info-irregular {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.location-content h2 {
    font-size: 2.4rem;
    color: #1a237e;
    margin-bottom: 2rem;
    font-weight: 700;
}

.location-details {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.location-detail {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: #f5f7fa;
    padding: 2rem;
    border-radius: 8px;
}

.location-detail h4 {
    font-size: 1.4rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-detail p {
    color: #546e7a;
    line-height: 1.8;
}

.faq-section-offset {
    background-color: #f5f7fa;
    padding: 6rem 2rem;
    margin: 4rem 0;
}

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

.faq-container h2 {
    font-size: 2.6rem;
    color: #1a237e;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: #546e7a;
    line-height: 1.7;
}

.ready-section-diagonal {
    background: linear-gradient(135deg, #2962ff 0%, #1e4ed8 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

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

.ready-content h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ready-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #e8eaf6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h3 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 2rem;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-thanks {
    display: flex;
    gap: 1.5rem;
    background-color: #f5f7fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background-color: #2962ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    color: #546e7a;
    line-height: 1.7;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #2962ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #1e4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: #e0e0e0;
    color: #424242;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-banner {
    background-color: #f5f5f5;
    padding: 3rem 2rem;
    text-align: center;
}

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

.trust-content h3 {
    font-size: 1.8rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-content p {
    color: #546e7a;
    line-height: 1.8;
}

.legal-page {
    padding: 4rem 2rem;
    min-height: 60vh;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    color: #757575;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a237e;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #1a237e;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #1a237e;
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
}

.legal-content p {
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #546e7a;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2962ff;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e4ed8;
}

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

    .hero-image-overlap {
        width: 70%;
    }

    .intro-offset {
        gap: 3rem;
    }

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

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

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-image-float {
        width: 100%;
        transform: none;
    }

    .story-section-irregular,
    .team-section-split {
        flex-direction: column;
    }

    .service-detail-block {
        flex-direction: column;
    }

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

    .contact-content-asymmetric {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .ad-label {
        position: static;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

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

    .hero-asymmetric {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .hero-image-overlap {
        position: static;
        width: 100%;
        height: 300px;
        transform: none;
        margin-top: 2rem;
    }

    .intro-offset {
        flex-direction: column;
        margin: 4rem auto;
    }

    .intro-left {
        transform: none;
    }

    .intro-right {
        transform: none;
    }

    .why-content-float {
        width: 100%;
        padding: 2rem;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

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

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

    .value-card {
        transform: none;
    }

    .approach-steps-irregular {
        flex-direction: column;
    }

    .step-item {
        transform: none;
    }

    .comparison-grid,
    .faq-grid,
    .location-details {
        flex-direction: column;
    }

    .comparison-item,
    .faq-item,
    .location-detail {
        flex: 1 1 100%;
    }

    .service-columns {
        flex-direction: column;
    }

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

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

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