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

:root {
    --primary-color: #2C5F2D;
    --secondary-color: #97BE5A;
    --accent-color: #F4A460;
    --dark-color: #1A1A1A;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --gray: #6B6B6B;
    --light-gray: #E5E5E5;
    --error-color: #B85450;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--secondary-color);
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content-offset {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-left: 5%;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.hero-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-cta-float {
    position: absolute;
    bottom: 2rem;
    right: 10%;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(44, 95, 45, 0.4);
}

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

.intro-container {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
    padding-right: 3rem;
}

.intro-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-left p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
}

.intro-right-stacked {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.services-preview-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    padding-left: 8%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

.price-note {
    color: var(--gray);
    font-size: 0.95rem;
}

.select-service,
.btn-select-service {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.select-service:hover,
.btn-select-service:hover {
    background: var(--secondary-color);
}

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

.form-container {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    margin-left: 10%;
}

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

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.form-intro p {
    color: var(--gray);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background: var(--white);
    cursor: not-allowed;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.trust-overlap {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: var(--light-bg);
    position: relative;
}

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.testimonials-stagger {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    flex: 1 1 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-1 {
    margin-top: 0;
}

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

.testimonial-3 {
    margin-top: 4rem;
}

.testimonial p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

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

.approach-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1;
    padding-right: 2rem;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.approach-image {
    flex: 1;
    margin-top: -4rem;
}

.approach-image img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

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

.values-scattered h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.value-item:nth-child(odd) {
    padding-left: 5%;
}

.value-item:nth-child(even) {
    padding-right: 5%;
    margin-top: 2rem;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--gray);
    line-height: 1.7;
}

.cta-section-float {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    position: relative;
    left: 5%;
}

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

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

.cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

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

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

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.page-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
}

.hero-container {
    max-width: 900px;
    padding-left: 8%;
}

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

.hero-intro {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.7;
}

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

.story-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.story-container.reverse {
    flex-direction: row-reverse;
}

.story-block {
    flex: 1;
}

.story-left {
    padding-right: 3rem;
}

.story-right {
    padding-left: 3rem;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-image-overlap {
    flex: 1;
}

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

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

.team-scattered h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.team-member {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.member-small {
    flex: 1 1 calc(40% - 1rem);
}

.member-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

.member-content p:last-child {
    color: var(--gray);
    line-height: 1.7;
}

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

.philosophy-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.philosophy-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.philosophy-item:nth-child(odd) {
    padding-right: 3rem;
}

.philosophy-item:nth-child(even) {
    padding-left: 3rem;
    margin-top: 2rem;
}

.philosophy-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-item p {
    color: var(--gray);
    line-height: 1.7;
}

.milestones-diagonal {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.milestones-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--gray);
    line-height: 1.7;
}

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

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

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

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

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

.service-lead {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: var(--gray);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

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

.price-period {
    color: var(--gray);
    margin-left: 0.5rem;
}

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

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

.process-diagonal {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.process-diagonal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.step {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.step:nth-child(even) {
    margin-top: 2rem;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.step p {
    color: var(--gray);
    line-height: 1.6;
}

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

.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--gray);
    line-height: 1.7;
}

.info-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 45, 0.9);
    color: var(--white);
    padding: 1.5rem;
}

.map-overlay p {
    margin-bottom: 0.3rem;
}

.map-info {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-cta-offset {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.cta-box {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-left: 10%;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.faq-asymmetric h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.faq-item:nth-child(odd) {
    padding-right: 2rem;
}

.faq-item:nth-child(even) {
    padding-left: 2rem;
    margin-top: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

.thanks-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    width: 100%;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.thanks-info {
    margin: 2rem 0;
}

.service-confirmation {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--gray);
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.step-box {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.step-box p {
    color: var(--gray);
    line-height: 1.6;
}

.thanks-cta {
    margin: 3rem 0;
}

.thanks-cta p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.back-home {
    margin-top: 3rem;
}

.back-home a {
    color: var(--gray);
    transition: color 0.3s ease;
}

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

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

.legal-container {
    background: var(--white);
    padding: 3rem;
    line-height: 1.8;
}

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

.legal-intro {
    color: var(--gray);
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

.legal-container p {
    color: var(--gray);
    margin-bottom: 1rem;
}

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

.legal-container li {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

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

.cookie-control-panel {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.cookie-control-panel h3 {
    margin-bottom: 1rem;
}

.cookie-control-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
}

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

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

    .hero-image-overlap {
        margin-top: 2rem;
    }

    .hero-cta-float {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 900px) {
    .intro-container,
    .approach-container,
    .story-container,
    .contact-container {
        flex-direction: column;
    }

    .intro-left,
    .story-block {
        padding-right: 0;
        padding-left: 0;
    }

    .approach-image {
        margin-top: 0;
    }

    .service-detail {
        flex-direction: column !important;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .member-large,
    .member-medium,
    .member-small {
        flex: 1 1 100%;
    }

    .value-item,
    .philosophy-item,
    .faq-item {
        flex: 1 1 100%;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .cta-section-float {
        left: 0;
    }
}

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

    .hero-lead {
        font-size: 1.1rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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