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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d4a5c;
    --accent-color: #c9a86a;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

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

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

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

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.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: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.sticky-btn {
    display: inline-block;
    padding: 18px 35px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 168, 106, 0.5);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 40px 80px;
}

.hero-offset-left {
    flex: 0 0 45%;
    padding-right: 60px;
    position: relative;
    z-index: 10;
}

.hero-text-block {
    max-width: 600px;
}

.hero-headline {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: 60px;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-offset {
    padding: 120px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    flex: 0 0 40%;
}

.intro-narrow h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.intro-wide-image {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.intro-wide-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.problem-amplify {
    padding: 100px 40px;
    background: var(--light-bg);
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-left {
    flex: 0 0 45%;
    position: relative;
    margin-left: 80px;
}

.problem-left img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
}

.problem-right {
    flex: 1;
    padding-right: 60px;
}

.problem-right h3 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.insight-reveal {
    padding: 140px 40px;
    background: var(--secondary-color);
    color: var(--white);
}

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

.insight-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(201, 168, 106, 0.2);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-container h2 {
    font-size: 52px;
    margin-bottom: 35px;
    font-weight: 800;
}

.insight-container p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.story-section {
    padding: 120px 40px;
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
}

.card-1 {
    flex: 0 0 calc(60% - 15px);
    margin-top: 60px;
}

.card-2 {
    flex: 0 0 calc(40% - 15px);
    margin-left: -40px;
}

.card-3 {
    flex: 0 0 calc(45% - 15px);
    margin-left: 100px;
    margin-top: -50px;
}

.story-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.story-content {
    padding: 30px;
}

.story-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.trust-builder {
    padding: 140px 40px;
    background: var(--light-bg);
}

.trust-content-offset {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-left {
    flex: 0 0 45%;
    padding-right: 40px;
}

.trust-left h3 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

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

.trust-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
}

.benefits-asymmetric {
    padding: 140px 40px;
}

.benefits-header-offset {
    max-width: 800px;
    margin: 0 0 80px 120px;
}

.benefits-header-offset h2 {
    font-size: 56px;
    font-weight: 800;
}

.benefits-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.02);
}

.benefit-item.large {
    flex: 0 0 calc(55% - 15px);
    margin-top: 40px;
}

.benefit-item.medium {
    flex: 0 0 calc(45% - 15px);
}

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

.benefit-item h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-break {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--accent-color), #b89555);
    text-align: center;
}

.cta-break-content h3 {
    font-size: 44px;
    margin-bottom: 35px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-btn-large {
    display: inline-block;
    padding: 22px 50px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 35px;
    transition: all 0.3s ease;
}

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

.services-reveal {
    padding: 140px 40px;
    background: var(--white);
}

.services-intro-offset {
    max-width: 700px;
    margin: 0 0 80px 80px;
}

.services-intro-offset h2 {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-intro-offset p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 45px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.offset-left {
    flex: 0 0 calc(48% - 20px);
    margin-top: 60px;
}

.offset-center {
    flex: 0 0 calc(52% - 20px);
    margin-top: 0;
}

.offset-right {
    flex: 0 0 calc(50% - 20px);
    margin-left: 80px;
    margin-top: -40px;
}

.offset-bottom {
    flex: 0 0 calc(45% - 20px);
    margin-top: 20px;
}

.offset-special {
    flex: 0 0 calc(55% - 20px);
    margin-top: -60px;
    margin-left: -40px;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 800;
}

.service-tagline {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

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

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

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.urgency-section {
    padding: 100px 40px;
    background: var(--secondary-color);
    color: var(--white);
}

.urgency-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.urgency-text {
    flex: 1;
}

.urgency-text h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-text p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 15px;
}

.urgency-cta {
    flex: 0 0 auto;
}

.btn-urgency {
    display: inline-block;
    padding: 20px 45px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: #d4b57a;
    transform: translateY(-3px);
}

.form-section-asymmetric {
    padding: 140px 40px;
    background: var(--light-bg);
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto 0 120px;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.booking-form {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    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(--accent-color);
}

.form-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #d4b57a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.4);
}

.final-trust {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--white);
}

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

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

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

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 16px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.about-hero-offset {
    padding: 160px 40px 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-hero-left {
    flex: 0 0 45%;
}

.about-hero-left h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero-left p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
}

.about-hero-right {
    flex: 1;
    margin-top: -60px;
}

.about-hero-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

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

.story-content-narrow {
    max-width: 800px;
    margin: 0 auto 60px;
}

.story-content-narrow h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.story-image-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.story-image-wide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.about-insight {
    padding: 120px 40px;
}

.insight-grid-asymmetric {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.insight-text {
    flex: 0 0 50%;
}

.insight-text h3 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.insight-image {
    flex: 1;
    margin-top: 40px;
}

.insight-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.about-founding {
    padding: 100px 40px;
    background: var(--light-bg);
}

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

.founding-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 800;
}

.founding-content p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-values {
    padding: 120px 40px;
}

.values-header {
    text-align: center;
    margin-bottom: 70px;
}

.values-header h2 {
    font-size: 52px;
    font-weight: 800;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    flex: 0 0 calc(50% - 18px);
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.02);
}

.value-card h4 {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 700;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.about-team {
    padding: 100px 40px;
    background: var(--light-bg);
}

.team-intro {
    text-align: center;
    margin-bottom: 70px;
}

.team-intro h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.team-grid-offset {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 0 0 300px;
    text-align: center;
}

.member-image {
    margin-bottom: 20px;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 5px solid var(--accent-color);
}

.team-member h4 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member p {
    font-size: 16px;
    color: var(--text-light);
}

.about-cta {
    padding: 100px 40px;
    background: var(--secondary-color);
    color: var(--white);
}

.cta-content-centered {
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 48px;
    margin-bottom: 35px;
    font-weight: 700;
}

.services-hero {
    padding: 160px 40px 80px;
    background: var(--light-bg);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 58px;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detail-section {
    padding: 80px 40px;
}

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto 80px;
    background: var(--white);
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.service-detail-card.exclusive {
    background: linear-gradient(135deg, #f8f6f0, var(--white));
}

.service-badge-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.service-detail-header {
    margin-bottom: 40px;
}

.service-detail-header h2 {
    font-size: 44px;
    margin-bottom: 10px;
    font-weight: 800;
}

.service-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.price-large {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-color);
    margin-top: 20px;
}

.price-large span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

.service-detail-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

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

.service-detail-left h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.features-detailed {
    list-style: none;
}

.features-detailed li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.features-detailed li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.service-detail-right {
    flex: 0 0 400px;
}

.service-detail-right img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-note {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.service-cta {
    text-align: center;
}

.btn-service {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #d4b57a;
    transform: translateY(-2px);
}

.services-additional {
    padding: 80px 40px;
    background: var(--light-bg);
}

.additional-content {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
}

.additional-content > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.additional-item {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
}

.additional-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.additional-item p {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
}

.services-faq {
    padding: 80px 40px;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.services-final-cta {
    padding: 100px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-hero {
    padding: 160px 40px 80px;
    background: var(--light-bg);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 58px;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 19px;
    color: var(--text-light);
}

.contact-main {
    padding: 80px 40px;
}

.contact-container {
    display: flex;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info {
    flex: 0 0 45%;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 800;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.hours-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.map-note {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-additional {
    padding: 80px 40px;
    background: var(--light-bg);
}

.additional-info {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 0 0 calc(50% - 15px);
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.info-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.info-card a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-cta {
    padding: 100px 40px;
}

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

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

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

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 800;
}

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

.thanks-details {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: left;
}

.thanks-next-steps {
    margin-bottom: 60px;
}

.thanks-next-steps h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.thanks-contact-info {
    margin-bottom: 40px;
}

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

.contact-email {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.trust-indicators {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.trust-item {
    text-align: center;
}

.trust-item h4 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--accent-color);
}

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

.legal-page {
    padding: 160px 40px 80px;
}

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

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-container h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-container p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.legal-container li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-back {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.legal-back a {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.legal-back a:hover {
    background: #d4b57a;
    transform: translateY(-2px);
}

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

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

.cookie-table th {
    background: var(--light-bg);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        left: 20px;
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 20px 60px;
    }

    .hero-offset-left {
        flex: 1;
        padding-right: 0;
    }

    .hero-headline {
        font-size: 48px;
    }

    .hero-image-right {
        margin-left: 0;
        margin-top: 40px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
        padding: 80px 20px;
    }

    .intro-narrow {
        flex: 1;
    }

    .problem-amplify {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .problem-left {
        margin-left: 0;
    }

    .problem-right {
        padding-right: 0;
    }

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

    .card-1,
    .card-2,
    .card-3 {
        flex: 1;
        margin: 0 0 20px 0;
    }

    .trust-content-offset {
        flex-direction: column;
        gap: 40px;
    }

    .trust-left {
        flex: 1;
        padding-right: 0;
    }

    .benefits-grid-irregular {
        flex-direction: column;
    }

    .benefit-item.large,
    .benefit-item.medium {
        flex: 1;
        margin-top: 0;
    }

    .services-cards-asymmetric {
        flex-direction: column;
    }

    .offset-left,
    .offset-center,
    .offset-right,
    .offset-bottom,
    .offset-special {
        flex: 1;
        margin: 0 0 30px 0;
    }

    .urgency-content-irregular {
        flex-direction: column;
        gap: 30px;
    }

    .form-container-offset {
        margin: 0 auto;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .about-hero-offset {
        flex-direction: column;
        padding: 120px 20px 60px;
        gap: 40px;
    }

    .about-hero-left {
        flex: 1;
    }

    .about-hero-right {
        margin-top: 0;
    }

    .insight-grid-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .insight-text {
        flex: 1;
    }

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

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

    .value-card {
        flex: 1;
    }

    .team-grid-offset {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .additional-item {
        flex: 1;
    }

    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .contact-info {
        flex: 1;
    }

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

    .info-card {
        flex: 1;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .trust-indicators {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 38px;
    }

    .hero-subtext {
        font-size: 17px;
    }

    .intro-narrow h2 {
        font-size: 32px;
    }

    .insight-container h2 {
        font-size: 38px;
    }

    .benefits-header-offset {
        margin: 0 0 40px 0;
    }

    .benefits-header-offset h2 {
        font-size: 40px;
    }

    .services-intro-offset {
        margin: 0 0 50px 0;
    }

    .services-intro-offset h2 {
        font-size: 40px;
    }

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

    .sticky-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}
