* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.header-asymmetric {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-disclosure {
    flex: 0 0 auto;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

.hero-text-block {
    flex: 1;
    padding-right: 3rem;
    transform: translateY(-2rem);
}

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

.hero-subtext {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-visual {
    flex: 1;
    position: relative;
    transform: translateY(2rem);
}

.hero-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.intro-irregular {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.offset-container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-card {
    flex: 1;
    background-color: #fff5f5;
    padding: 3rem;
    border-left: 5px solid #e74c3c;
    transform: translateX(-3rem);
}

.problem-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #c0392b;
}

.problem-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.problem-visual {
    flex: 1;
    transform: translateX(3rem) translateY(-2rem);
}

.problem-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.insight-section {
    background-color: #ecf0f1;
    padding: 6rem 2rem;
}

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

.insight-image {
    flex: 0.9;
    transform: translateY(2rem);
}

.insight-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.insight-text {
    flex: 1.1;
    transform: translateY(-2rem);
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.services-intro p {
    font-size: 1.15rem;
    color: #555;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.offset-top {
    transform: translateY(-1.5rem);
}

.offset-bottom {
    transform: translateY(1.5rem);
}

.offset-center {
    transform: translateX(-1rem);
}

.offset-right {
    transform: translateX(1.5rem);
}

.offset-left {
    transform: translateX(-1.5rem);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    font-weight: 700;
}

.price {
    font-size: 1.8rem;
    color: #27ae60;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-service,
.btn-service-page {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover,
.btn-service-page:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonials-irregular {
    background-color: #fff9e6;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.testimonials-irregular h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.testimonial-block {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.offset-a {
    transform: translateY(-1rem);
}

.offset-b {
    transform: translateY(1rem);
}

.offset-c {
    transform: translateY(-0.5rem);
}

.testimonial-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
    font-style: normal;
}

.how-it-works {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.process-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.step-block {
    flex: 1 1 280px;
    text-align: center;
    max-width: 350px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateX(-2rem);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-selection-display {
    background-color: #e8f5e9;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid #27ae60;
}

.service-selection-display p {
    margin: 0.3rem 0;
    color: #2c3e50;
    font-weight: 600;
}

.consultation-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: #2c3e50;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.benefits-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.benefit-items {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-item:nth-child(1) {
    transform: translateY(-1.5rem);
}

.benefit-item:nth-child(2) {
    transform: translateY(1rem);
}

.benefit-item:nth-child(3) {
    transform: translateY(-0.5rem);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.final-cta-offset {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.cta-block-irregular {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    transform: translateX(2rem);
}

.cta-block-irregular h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-block-irregular p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    padding: 3rem 2rem;
    margin: 4rem 0;
}

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

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.8;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

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

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

.hero-content-narrow h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
    opacity: 0.95;
}

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

.story-layout-offset {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
    transform: translateX(-2rem);
}

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.story-image {
    flex: 0.8;
    transform: translateX(2rem) translateY(-1.5rem);
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mission-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.mission-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.mission-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.mission-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
}

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.values-asymmetric {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-asymmetric h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.approach-section {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
}

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

.approach-visual {
    flex: 1;
    transform: translateY(-2rem);
}

.approach-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.approach-content {
    flex: 1;
    transform: translateY(2rem);
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.expertise-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-block {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 260px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.expertise-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.expertise-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-about {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    padding: 4rem 2rem;
    margin: 5rem 0;
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.services-intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

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

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

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    color: #27ae60;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

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

.service-benefits {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-benefits li {
    list-style: disc;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.services-cta-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin: 5rem 0;
}

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

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

.services-cta-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-info-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-layout-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-note {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.contact-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.contact-visual {
    flex: 1;
    transform: translateY(-2rem);
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.response-time-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

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

.response-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.response-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.faq-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.location-benefits {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-layout h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.thanks-content {
    text-align: center;
}

.success-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 2rem;
    font-weight: 600;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem auto;
    max-width: 500px;
}

.selected-service-info p {
    margin: 0.5rem 0;
    color: #2c3e50;
    font-size: 1.05rem;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.step-item {
    flex: 1 1 280px;
    max-width: 320px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    text-align: center;
}

.step-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.thanks-info {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem auto;
    max-width: 700px;
}

.thanks-info p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.additional-resources {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0 0;
}

.resources-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-wrapper h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.resources-wrapper > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.resource-cards {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resource-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #2980b9;
}

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

.legal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

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

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    list-style: disc;
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

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

    .hero-text-block {
        transform: none;
        padding-right: 0;
    }

    .hero-visual {
        transform: none;
    }
}

@media (max-width: 968px) {
    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

    .problem-card {
        transform: none;
    }

    .problem-visual {
        transform: none;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .insight-image,
    .insight-text {
        transform: none;
    }

    .story-layout-offset {
        flex-direction: column;
    }

    .story-text,
    .story-image {
        transform: none;
    }

    .approach-layout {
        flex-direction: column;
    }

    .approach-visual,
    .approach-content {
        transform: none;
    }

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

    .contact-visual {
        transform: none;
    }

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

    .form-container-offset {
        transform: none;
    }

    .cta-block-irregular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1.05rem;
    }

    .intro-narrow h2 {
        font-size: 1.8rem;
    }

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

    .service-card {
        transform: none !important;
    }

    .hero-content-narrow h1 {
        font-size: 2.2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}