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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

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

h1 {
    font-size: 3.2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

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

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

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

.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 20px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-color);
}

.hero-immersive {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(139, 115, 85, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
}

.hero-overlay h1 {
    color: white;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 700px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-hero {
    background: white;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.opening-line {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.problem-amplification {
    padding: 8rem 0;
    background: white;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.insight-reveal {
    padding: 10rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

.label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.centered-message h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.centered-message p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.image-gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-item {
    flex: 1;
    min-width: 350px;
    max-width: 450px;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.caption {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.trust-building {
    padding: 8rem 0;
    background: white;
}

.trust-elements {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

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

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

.testimonial-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.author {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.solution-reveal {
    padding: 8rem 0;
    background: white;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.cta-break {
    padding: 6rem 0;
    background: var(--secondary-color);
    text-align: center;
}

.cta-message h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

.cta-button:hover {
    transform: translateY(-3px);
}

.services-showcase {
    padding: 8rem 0;
    background: white;
}

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

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    position: relative;
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-image {
    width: 100%;
    height: 350px;
}

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

.service-details {
    padding: 2.5rem;
}

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

.service-details > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.select-service:hover {
    background: var(--primary-color);
}

.urgency-element {
    padding: 5rem 0;
    background: #fff3e0;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    border: 3px solid var(--accent-color);
    border-radius: 8px;
    background: white;
}

.urgency-label {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.cta-urgent:hover {
    transform: translateY(-3px);
}

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

.guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.guarantee-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-section {
    padding: 8rem 0;
    background: white;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: Georgia, serif;
    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);
}

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

.form-group.checkbox input {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

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

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

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

.final-message h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.cta-final {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-final:hover {
    transform: translateY(-3px);
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

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

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-column ul li a:hover {
    color: white;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.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 {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

.page-hero {
    margin-top: 70px;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.page-hero .hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.about-story {
    padding: 8rem 0;
    background: white;
}

.story-block {
    margin-bottom: 4rem;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 6px;
}

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

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

.team-grid {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.member-image {
    width: 100%;
    height: 350px;
}

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

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.role {
    padding: 0 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.team-member p:last-child {
    padding: 1rem 1.5rem 2rem;
    color: var(--text-light);
    font-size: 1rem;
}

.workshop-section {
    padding: 8rem 0;
    background: white;
}

.workshop-images {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.workshop-images img {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.philosophy-section .centered-content {
    text-align: center;
}

.big-text {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 2rem 0;
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 0;
    background: white;
}

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

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

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-detail-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.service-detail-card.featured-service {
    border: 3px solid var(--accent-color);
    position: relative;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-detail-content {
    display: flex;
    gap: 0;
}

.service-text {
    flex: 1;
    padding: 3rem;
}

.service-visual {
    flex: 1;
}

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

.service-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.service-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.service-list {
    list-style: none;
    margin: 2rem 0;
}

.service-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

.service-price-block {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

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

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

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

.service-cta:hover {
    background: var(--primary-color);
}

.services-intro-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

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

.process-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

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

.timeline-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.guarantees-section {
    padding: 6rem 0;
    background: white;
}

.guarantee-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.guarantee-box {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

.guarantee-box p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.final-cta-section {
    padding: 8rem 0;
    background: var(--primary-color);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-container h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

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

.cta-large:hover {
    transform: translateY(-3px);
}

.contact-info-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 350px;
}

.map-placeholder {
    flex: 1;
    min-width: 350px;
}

.info-items {
    margin: 3rem 0;
}

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

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

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

.note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.visit-note {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    margin-top: 3rem;
}

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

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
}

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

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.main-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

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

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

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

.submit-button:hover {
    background: var(--primary-color);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    max-width: 48%;
}

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

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

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

.testimonials-carousel {
    max-width: 900px;
    margin: 3rem auto 0;
}

.testimonial-slide {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

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

.testimonial-author {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.final-contact-cta {
    padding: 6rem 0;
    background: var(--secondary-color);
    text-align: center;
}

.final-contact-cta .cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-contact-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.email-cta {
    display: inline-block;
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.email-cta:hover {
    color: rgba(255, 255, 255, 0.8);
}

.legal-page {
    margin-top: 70px;
    padding: 6rem 0;
    background: white;
}

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

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

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

.legal-section {
    margin-bottom: 3rem;
}

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

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

.legal-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.data-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.data-table td {
    color: var(--text-light);
}

.thanks-hero {
    margin-top: 70px;
    padding: 8rem 0;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.next-steps {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.service-selected {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 3rem;
}

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

.service-selected p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
}

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

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

.additional-info {
    font-size: 1rem;
    color: var(--text-light);
}

.additional-info a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

    h2 {
        font-size: 2rem;
    }

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

    .nav-links {
        display: none;
    }

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

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

    .split-content {
        flex-direction: column;
        gap: 3rem;
    }

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

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

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

    .faq-item {
        max-width: 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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