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

:root {
    --primary-color: #2d5a4a;
    --secondary-color: #8b7355;
    --accent-color: #c9a97e;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #234539;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

.sticky-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 4px 20px rgba(45, 90, 74, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #234539;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 90, 74, 0.4);
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 2rem;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    filter: blur(80px);
}

.hero-overlay h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

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

.intro-story {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

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

.story-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.visual-break {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.break-text {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    padding: 3rem 4rem;
    max-width: 600px;
    text-align: center;
}

.break-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
}

.problem-amplification {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-left {
    flex: 1;
}

.problem-left h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.problem-left p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.problem-right {
    flex: 1;
}

.problem-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insight-reveal {
    padding: 10rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.insight-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.insight-wrapper h2 {
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
}

.insight-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.insight-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.insight-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.visual-showcase {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.showcase-item {
    flex: 1;
}

.showcase-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.showcase-item p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trust-building {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

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

.trust-content h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-point {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    min-width: 80px;
}

.trust-point h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-point p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonials-flow {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.9;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.approach-storytelling {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.step {
    margin-bottom: 2.5rem;
}

.step h4 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-reveal {
    padding: 10rem 2rem;
    background: var(--bg-light);
}

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

.services-intro h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px 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 10px 40px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.select-service {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.select-service:hover {
    background: #234539;
}

.urgency-section {
    padding: 7rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

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

.urgency-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

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

.urgency-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--secondary-color);
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.urgency-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.benefits-visual {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

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

.benefits-wrapper h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.benefits-list {
    display: flex;
    gap: 3rem;
}

.benefit-item {
    flex: 1;
    text-align: center;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.social-proof {
    padding: 7rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.proof-content h2 {
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-section {
    padding: 10rem 2rem;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.form-submit {
    padding: 1.2rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background: #234539;
}

.final-cta {
    padding: 8rem 2rem;
    background: var(--bg-white);
    text-align: center;
}

.final-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.final-wrapper h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.8rem;
}

.final-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.final-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.final-btn:hover {
    background: #234539;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 74, 0.3);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: var(--bg-light);
}

.page-hero h1 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.philosophy {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.philosophy-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.philosophy-item {
    flex: 1;
    text-align: center;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.philosophy-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.team-content h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.team-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.values-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.values-wrapper h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-card h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    color: var(--bg-white);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

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

.services-detail {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-detail-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-price-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #234539;
}

.process-overview {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.process-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.process-wrapper h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 2.5rem;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.services-cta {
    padding: 6rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

.services-cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-wrapper h2 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.services-cta-wrapper p {
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-info {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.contact-item h4 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-note {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.note-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.note-wrapper h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.note-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.note-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.note-wrapper ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.alternative-contact {
    padding: 6rem 2rem;
    background: var(--bg-white);
    text-align: center;
}

.alternative-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.alternative-wrapper h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.alternative-wrapper p {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.alternative-wrapper a {
    color: var(--primary-color);
}

.alternative-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.alternative-btn:hover {
    background: #234539;
}

.thanks-page {
    padding: 10rem 2rem 6rem;
    background: var(--bg-light);
    min-height: 70vh;
}

.thanks-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-wrapper h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.selected-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-next ul {
    padding-left: 1.5rem;
}

.thanks-next ul li {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

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

.thanks-btn.primary:hover {
    background: #234539;
}

.thanks-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-page {
    padding: 10rem 2rem 6rem;
    background: var(--bg-white);
}

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

.legal-wrapper h1 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-wrapper h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.legal-wrapper h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-wrapper ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.legal-wrapper strong {
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

    .trust-point {
        flex-direction: column;
        text-align: center;
    }

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

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .problem-content,
    .approach-content,
    .about-content,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .philosophy-points,
    .process-steps {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .floating-nav {
        padding: 1rem 1.5rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

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

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

    .thanks-wrapper {
        padding: 2rem;
    }

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

    .thanks-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        padding: 1rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}