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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #7a9d88;
    --accent-color: #c4a661;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-color: #e0e0e0;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 90%;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 10px;
    background: #f9f9f9;
    border-radius: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 50px;
    gap: 60px;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    padding-left: 8%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
}

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

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

.hero-image-block {
    flex: 1;
    position: relative;
    background: var(--light-color);
}

.hero-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.intro-offset {
    padding: 120px 5% 80px;
    background: var(--light-color);
}

.intro-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-visual {
    flex: 0.9;
    background: #ddd;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.intro-content {
    flex: 1.1;
    padding-right: 5%;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-grid {
    padding: 100px 5%;
    background: white;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 3%;
}

.section-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-header-left p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

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

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.service-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.service-small {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 280px;
}

.service-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--light-color);
}

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

.service-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-info p {
    margin-bottom: 20px;
    color: #555;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.form-section {
    padding: 100px 5%;
    background: var(--light-color);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-intro p {
    color: #666;
    font-size: 1.1rem;
}

.selected-service-display {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
}

.selected-service-display.empty {
    background: #f0f0f0;
    color: #999;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust-section {
    padding: 100px 5%;
    background: white;
}

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

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--dark-color);
}

.trust-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: var(--light-color);
    border-radius: 12px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    line-height: 1.8;
    color: #555;
}

.testimonials-inline {
    padding: 100px 8%;
    background: var(--primary-color);
    color: white;
}

.testimonial-offset {
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonial-offset:nth-child(even) {
    margin-left: 15%;
    margin-right: auto;
}

.testimonial-offset:nth-child(odd) {
    margin-left: auto;
    margin-right: 15%;
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.footer-asymmetric {
    background: var(--dark-color);
    color: white;
    padding: 80px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.8;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

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

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

.page-hero-offset {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 5% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    background: var(--light-color);
}

.story-block-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.story-content-right {
    flex: 1;
    padding-right: 5%;
}

.story-content-right h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.story-content-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.values-section {
    padding: 100px 5%;
    background: var(--light-color);
}

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

.values-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-offset-1 {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
    margin-top: 0;
}

.value-offset-2 {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
    margin-top: 60px;
}

.value-offset-3 {
    flex: 1 1 100%;
    margin-top: -30px;
    margin-left: 10%;
    max-width: 80%;
}

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

.value-card p {
    line-height: 1.8;
    color: #555;
}

.process-section {
    padding: 100px 5%;
    background: white;
}

.process-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.process-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: var(--light-color);
    border-radius: 12px;
}

.step:nth-child(even) {
    margin-left: 80px;
}

.step:nth-child(odd) {
    margin-right: 80px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step p {
    line-height: 1.8;
    color: #555;
}

.team-section {
    padding: 100px 5% 0;
    background: var(--light-color);
}

.team-intro-offset {
    max-width: 700px;
    margin-bottom: 50px;
    margin-left: 8%;
}

.team-intro-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.team-intro-offset p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.team-visual {
    width: 100%;
    background: #ddd;
}

.team-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-about {
    padding: 100px 5%;
    background: var(--primary-color);
    text-align: center;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.cta-button:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 80px 5%;
    background: white;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: var(--light-color);
    border-radius: 15px;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
    background: white;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-detail-content > p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 0.8;
    background: #ddd;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.booking-cta-section {
    padding: 100px 5%;
    background: var(--secondary-color);
    text-align: center;
}

.booking-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.booking-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.contact-section {
    padding: 80px 5%;
    background: white;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

.contact-visual-block {
    flex: 1;
    background: var(--light-color);
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.response-info {
    padding: 80px 5%;
    background: var(--light-color);
}

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

.response-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.response-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.response-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 5%;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.service-selected {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.next-steps {
    margin: 50px 0;
    text-align: left;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
    color: #555;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.legal-page {
    padding: 150px 5% 80px;
    background: white;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.last-updated {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.legal-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}

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

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

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

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

.cookies-table th {
    background: var(--light-color);
    font-weight: 700;
    color: var(--dark-color);
}

.cookies-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .intro-wrapper,
    .about-story,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .step:nth-child(even),
    .step:nth-child(odd) {
        margin-left: 0;
        margin-right: 0;
    }

    .value-offset-3 {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        border-radius: 0;
        top: 0;
        padding: 15px 20px;
    }

    .nav-container {
        gap: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-offset:nth-child(even),
    .testimonial-offset:nth-child(odd) {
        margin-left: auto;
        margin-right: auto;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}