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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a5f2e;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 20px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px 40px;
}

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

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

.hero-subtext {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #1f5a2e;
}

.hero-visual-block {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 48%;
    height: 70%;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(3deg);
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-intro {
    padding: 120px 40px;
    background: #fafbfc;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-text-narrow {
    max-width: 650px;
}

.story-text-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.story-text-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.insight-card-offset {
    flex: 1;
    margin-top: 80px;
}

.insight-inner {
    background: #2d7a3e;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    transform: rotate(-2deg);
}

.insight-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.insight-inner p {
    font-size: 1rem;
    line-height: 1.7;
}

.problem-amplify {
    padding: 100px 40px;
    background: #ffffff;
}

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.8rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.problem-list {
    list-style: none;
    margin-bottom: 24px;
}

.problem-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #444;
}

.problem-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.problem-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d7a3e;
    margin-top: 24px;
}

.problem-visual {
    flex: 0 0 420px;
    background: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-30px);
}

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

.science-section {
    padding: 120px 40px;
    background: #f8f9fa;
}

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

.science-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.science-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.science-card:nth-child(2) {
    transform: translateY(30px);
}

.science-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #2d7a3e;
}

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

.citation {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.trust-builder {
    padding: 100px 40px;
    background: #ffffff;
}

.testimonial-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-block {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 36px;
    border-radius: 12px;
}

.testimonial-block.offset-down {
    margin-top: 50px;
}

.testimonial-block.offset-up {
    margin-top: -50px;
}

.testimonial-block blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

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

.benefits-reveal {
    padding: 120px 40px;
    background: #fafbfc;
}

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

.benefits-container h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.benefit-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.benefit-card.wide {
    flex: 1 1 calc(60% - 20px);
    min-width: 400px;
}

.benefit-card.narrow {
    flex: 1 1 calc(40% - 20px);
    min-width: 300px;
}

.benefit-card.offset-down {
    margin-top: 40px;
}

.benefit-card.offset-up {
    margin-top: -40px;
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin: 24px 28px 12px 28px;
    color: #1a1a1a;
}

.benefit-card p {
    margin: 0 28px 28px 28px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 120px 40px;
    background: #ffffff;
}

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

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

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

.service-selection-form {
    max-width: 1200px;
    margin: 0 auto;
}

.form-asymmetric {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 16px;
}

.form-asymmetric h3 {
    font-size: 2rem;
    margin-bottom: 36px;
    color: #1a1a1a;
}

.service-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.service-option {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-card-select {
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    height: 100%;
}

.service-option input[type="radio"]:checked + .service-card-select {
    border-color: #2d7a3e;
    background: #f0f8f2;
}

.service-card-select h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card-select p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d7a3e;
}

.form-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

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

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

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

.btn-submit-primary {
    padding: 16px 48px;
    background: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit-primary:hover {
    background: #1f5a2e;
}

.final-push {
    padding: 100px 40px;
    background: #1a5f2e;
    color: #ffffff;
}

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

.final-content h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.final-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #1a5f2e;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #f0f0f0;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-column p,
.footer-column ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

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

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list a {
    color: #3498db;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #2d7a3e;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1f5a2e;
}

.btn-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #636e72;
}

.page-hero-minimal {
    padding: 160px 40px 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-hero-minimal h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 40px;
    background: #ffffff;
}

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

.story-image-side {
    flex: 0 0 45%;
    background: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

.story-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-text-side {
    flex: 1;
}

.story-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text-side p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.values-section {
    padding: 100px 40px;
    background: #fafbfc;
}

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

.values-container h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card.offset-right {
    margin-top: 50px;
}

.value-card.offset-left {
    margin-top: -30px;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #2d7a3e;
}

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

.team-approach {
    padding: 100px 40px;
    background: #ffffff;
}

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

.team-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.team-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.process-step.offset-down {
    margin-top: 40px;
}

.process-step.offset-up {
    margin-top: -40px;
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d7a3e;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.credentials-section {
    padding: 100px 40px;
    background: #fafbfc;
}

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

.credentials-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.credentials-wrapper > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.credentials-list ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.credentials-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.05rem;
    color: #2c3e50;
}

.services-detailed {
    padding: 80px 40px 120px 40px;
    background: #ffffff;
}

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

.services-intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.services-layout-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.service-item.wide-format {
    flex-direction: row;
}

.service-item.compact-format {
    flex-direction: row-reverse;
}

.service-item.offset-right {
    margin-left: 80px;
}

.service-item.offset-left {
    margin-right: 80px;
}

.service-image-block {
    flex: 0 0 45%;
    background: #ecf0f1;
    overflow: hidden;
}

.service-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.service-details-block {
    flex: 1;
    padding: 40px;
}

.service-details-block h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details-block > p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 24px;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d7a3e;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #1f5a2e;
}

.warranty-info {
    padding: 100px 40px;
    background: #fafbfc;
}

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

.warranty-container h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.warranty-block {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.warranty-block h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #2d7a3e;
}

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

.contact-main {
    padding: 80px 40px 100px 40px;
    background: #ffffff;
}

.contact-layout-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-primary {
    flex: 0 0 45%;
}

.contact-info-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail-block {
    margin-bottom: 32px;
}

.contact-detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2d7a3e;
}

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

.contact-visual-side {
    flex: 1;
}

.contact-visual-side img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
}

.contact-note {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.contact-note h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-contact-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-contact-cta:hover {
    background: #1f5a2e;
}

.service-areas {
    padding: 100px 40px;
    background: #fafbfc;
}

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

.areas-container h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.areas-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-list-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.area-column {
    flex: 0 0 280px;
}

.area-column h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #2d7a3e;
}

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

.area-column li {
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
}

.response-expectations {
    padding: 80px 40px;
    background: #ffffff;
}

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

.response-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.thanks-hero {
    padding: 160px 40px 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f0f8f2 0%, #ffffff 100%);
}

.thanks-content-center {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.selected-service-display {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #2d7a3e;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.next-steps {
    padding: 100px 40px;
    background: #ffffff;
}

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

.steps-container h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.steps-timeline {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.timeline-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #2d7a3e;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-step h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.while-you-wait {
    padding: 80px 40px;
    background: #fafbfc;
}

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

.wait-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.wait-content > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

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

.resource-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2d7a3e;
}

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

.confirmation-footer {
    padding: 60px 40px;
    background: #ffffff;
}

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

.confirmation-note p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page {
    padding: 140px 40px 100px 40px;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 16px 0 24px 30px;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2d7a3e;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-content-offset h1 {
        font-size: 3rem;
    }

    .hero-visual-block {
        width: 45%;
    }

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

    .insight-card-offset {
        margin-top: 40px;
    }

    .split-irregular {
        flex-direction: column;
    }

    .problem-visual {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

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

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

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

    .hero-visual-block {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        margin-top: 40px;
        transform: rotate(0);
    }

    .story-split,
    .contact-layout-split {
        flex-direction: column;
    }

    .benefit-card.wide,
    .benefit-card.narrow {
        flex: 1 1 100%;
    }

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

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

    .page-hero-minimal h1 {
        font-size: 2.5rem;
    }
}
