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

:root {
    --primary: #8B7355;
    --primary-light: #D4A574;
    --primary-dark: #6B5745;
    --accent: #C4A57B;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: var(--primary-dark);
}

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.hero-immersive {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content-center {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title-large {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.story-intro {
    padding: 100px 20px;
    background: var(--bg-light);
}

.intro-lead {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.story-intro p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.visual-block-left,
.visual-block-right {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.visual-block-left {
    flex-direction: row;
}

.visual-block-right {
    flex-direction: row-reverse;
}

.visual-side {
    flex: 1;
    min-height: 600px;
}

.content-side {
    flex: 1;
    padding: 80px;
}

.content-side h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.content-side p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.link-arrow {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 20px;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.insight-panel {
    padding: 100px 20px;
    background: var(--primary-dark);
    color: white;
}

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

.insight-box h3 {
    font-size: 38px;
    margin-bottom: 30px;
}

.insight-box p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-highlight {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
}

.story-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-title-center {
    font-size: 44px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.story-section p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-light);
}

.trust-markers {
    padding: 80px 20px;
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.trust-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.testimonial-inline {
    padding: 100px 20px;
    background: var(--bg-white);
}

.testimonial-large {
    font-size: 26px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    border-left: 4px solid var(--primary);
    padding-left: 40px;
    margin: 0;
}

.testimonial-large cite {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--bg-light);
}

.benefits-stack {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-block-centered {
    padding: 100px 20px;
    text-align: center;
    background: var(--bg-white);
}

.cta-block-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.cta-block-centered p {
    font-size: 19px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.cta-primary-large {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

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

.process-flow {
    padding: 100px 20px;
    background: var(--bg-white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

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

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-pricing {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-top: -20px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 25px 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 25px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.urgency-element {
    padding: 80px 20px;
    background: var(--bg-white);
}

.urgency-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 15px;
}

.urgency-note {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.form-group-checkbox input {
    width: auto;
}

.form-group-checkbox label {
    font-size: 14px;
    color: var(--text-light);
}

.form-group-checkbox a {
    color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.final-reassurance {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.final-reassurance h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.final-reassurance p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.sticky-btn {
    display: inline-block;
    padding: 16px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

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

.page-hero {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-story {
    padding: 100px 20px;
    background: var(--bg-white);
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

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

.team-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.member-role {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-detail {
    padding: 80px 20px;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin: 30px 0;
}

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

.service-detail-image .img-placeholder {
    min-height: 400px;
    border-radius: 12px;
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.contact-info > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    margin: 40px 0;
}

.service-selected {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.service-selected h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.thanks-next-steps {
    text-align: left;
    margin: 50px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-dark);
}

.next-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    min-width: 40px;
}

.next-step p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.legal-content {
    padding: 80px 20px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-dark);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        align-items: flex-start;
    }

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

    .hero-title-large {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .visual-block-left,
    .visual-block-right {
        flex-direction: column;
    }

    .content-side {
        padding: 40px 20px;
    }

    .content-side h2 {
        font-size: 32px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .testimonial-large {
        font-size: 20px;
        padding-left: 20px;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 36px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

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

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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