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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-light: #f9f7f4;
    --bg-dark: #3a3a3a;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

.nav-menu li a {
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    border-bottom-color: var(--secondary-color);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    display: inline-block;
    font-family: 'Helvetica Neue', sans-serif;
}

.sticky-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(139, 115, 85, 0.5));
    z-index: 2;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.cta-hero:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.section-narrow-text {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-narrow-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.section-narrow-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.inline-image {
    margin: 3rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-split-visual {
    padding: 5rem 0;
}

.split-container {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.split-image {
    flex: 1;
    min-height: 500px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 4rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 3px;
    font-family: 'Helvetica Neue', sans-serif;
}

.cta-inline:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.section-dark-bg {
    background: var(--bg-dark);
    color: var(--white);
    padding: 6rem 0;
}

.section-dark-bg h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.insight-card p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-flow {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.testimonial-large {
    margin: 3rem 0;
    padding: 3rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-large p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-large cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 1rem;
}

.section-stacked-visual {
    position: relative;
    margin: 4rem 0;
}

.full-width-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.overlay-text-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95), transparent);
    color: var(--white);
    padding: 4rem 2rem 3rem;
}

.overlay-text-block h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.overlay-text-block p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
}

.benefits-asymmetric {
    padding: 6rem 0;
}

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

.benefit-offset.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1.2;
}

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

.benefit-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefit-image {
    flex: 1;
}

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

.trust-builder {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.trust-item p {
    margin: 0;
    font-size: 1.1rem;
}

.services-reveal {
    padding: 6rem 0;
    background: var(--white);
}

.services-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.03);
}

.service-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-visual {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    padding: 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.urgency-block {
    padding: 4rem 0;
    background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
}

.urgency-content {
    text-align: center;
    color: var(--white);
}

.urgency-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.3rem !important;
    font-weight: 600;
    margin-top: 2rem !important;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    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(--secondary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.final-cta-block {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-block h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta-final:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

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

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

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

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    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.7rem;
}

.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(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

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

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 10rem 0 6rem;
    text-align: center;
    margin-top: 4rem;
}

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

.hero-lead {
    font-size: 1.4rem;
    opacity: 0.9;
}

.about-story,
.values-section,
.team-philosophy,
.process-section,
.commitment-section {
    padding: 5rem 0;
}

.story-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.values-section {
    background: var(--bg-light);
}

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

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

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

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.philosophy-quote {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

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

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.commitment-list {
    list-style: none;
    padding-left: 0;
}

.commitment-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-about {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-detail-content {
    flex: 1.3;
    position: relative;
}

.price-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.featured-price {
    background: var(--secondary-color);
    color: var(--white);
}

.badge-small {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

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

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    margin-top: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.services-comparison {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-comparison h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr.highlight-row {
    background: rgba(201, 169, 97, 0.1);
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-services {
    padding: 5rem 0;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

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

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.3rem 3.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-primary-large:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

.contact-info-section {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

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

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.info-block p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.info-block .note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

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

.contact-reasons h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.reason-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.reason-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-process {
    padding: 5rem 0;
}

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

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.testimonials-contact h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.working-hours-highlight {
    padding: 5rem 0;
}

.hours-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

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

.hours-detail {
    margin: 2rem 0;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.hours-day .day {
    font-weight: 600;
    color: var(--primary-color);
}

.hours-day .time {
    color: var(--text-light);
}

.hours-day.closed .time {
    color: var(--text-light);
    font-style: italic;
}

.hours-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-contact {
    padding: 5rem 0;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

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

.thanks-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thanks-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-content {
    padding: 5rem 0;
}

.thanks-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.thanks-box h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

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

.thanks-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.thanks-additional {
    padding: 5rem 0;
    background: var(--bg-light);
}

.thanks-additional h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: var(--accent-color);
}

.thanks-faq {
    padding: 5rem 0;
}

.thanks-cta {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.legal-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: 4rem;
}

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

.legal-date {
    font-size: 1.1rem;
    opacity: 0.85;
}

.legal-content {
    padding: 5rem 0;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.data-retention-table,
.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--border-color);
}

.data-retention-table th,
.data-retention-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-retention-table th,
.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1rem;
    }

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

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .split-container,
    .service-detail-card,
    .benefit-offset,
    .contact-grid {
        flex-direction: column;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-steps {
        flex-direction: column;
    }

    .step {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

    .page-hero {
        padding: 8rem 0 4rem;
    }

    .insight-grid,
    .values-grid,
    .reasons-grid,
    .testimonial-grid,
    .additional-grid {
        flex-direction: column;
    }
}
