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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.nav-main {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f4a261;
}

.ad-label {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 4px;
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #0d0d0d;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 700px;
}

.intro-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

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

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.insight-block {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.split-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #555;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    color: #e8e8e8;
}

.story-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #f4a261;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #f4f4f4;
}

.benefits-container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    background-color: #fafafa;
}

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

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

.benefit-card h4 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #666;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.2rem;
    color: #555;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #e0e0e0;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f4a261;
    margin-bottom: 1.5rem;
}

.btn-select {
    background-color: #e76f51;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #d35e43;
    transform: translateY(-2px);
}

.btn-select:active {
    transform: translateY(0);
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #f4a261;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #777;
    font-weight: 600;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #2c2c2c;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.form-container > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #444;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #3a3a3a;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4a261;
}

.form-group input[readonly] {
    background-color: #505050;
    cursor: not-allowed;
}

.btn-primary {
    background-color: #f4a261;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: #666;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #555;
}

.footer-main {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f4a261;
}

.footer-section p {
    font-size: 0.95rem;
    color: #aaa;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f4a261;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-style: italic;
    color: #888;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
    flex: 1;
}

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

.page-hero {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
}

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

.about-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-intro img {
    flex: 1;
    width: 100%;
    border-radius: 8px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.philosophy-section {
    margin-bottom: 5rem;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a9d8f;
}

.philosophy-item p {
    font-size: 1rem;
    color: #666;
}

.expertise-section,
.process-section,
.values-section {
    margin-bottom: 5rem;
}

.expertise-section h2,
.process-section h2,
.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.expertise-section p,
.values-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

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

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f4a261;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 0.95rem;
    color: #666;
}

.values-section {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.values-section img {
    flex: 1;
    border-radius: 8px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.values-text {
    flex: 1;
}

.values-text ul {
    list-style-position: inside;
    font-size: 1.05rem;
    color: #555;
    line-height: 2;
}

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

.service-full {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-full:last-child {
    border-bottom: none;
}

.service-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-includes {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f4a261;
}

.cta-section {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
}

.cta-content .btn-primary {
    width: auto;
    display: inline-block;
}

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

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2a9d8f;
}

.info-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.email-display {
    color: #555;
    cursor: default;
}

.contact-map {
    flex: 1;
    background-color: #e8e8e8;
}

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

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-additional a {
    color: #2a9d8f;
    text-decoration: underline;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #2a9d8f;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    background-color: #e8f5f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.thanks-details span {
    font-weight: 700;
    color: #2a9d8f;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-info ul {
    list-style-position: inside;
    font-size: 1.05rem;
    color: #555;
    line-height: 2;
}

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

.thanks-actions a {
    text-decoration: none;
}

.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #264653;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a9d8f;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #2a9d8f;
    text-decoration: underline;
}

.legal-update {
    margin-top: 4rem;
    font-style: italic;
    color: #777;
}

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

.legal-table th,
.legal-table td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: left;
}

.legal-table th {
    background-color: #f4f4f4;
    font-weight: 700;
    color: #1a1a1a;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-overlay p {
        font-size: 1.2rem;
    }

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

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

    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .about-intro {
        flex-direction: column;
    }

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

    .service-full {
        flex-direction: column;
    }

    .service-full:nth-child(even) {
        flex-direction: column;
    }

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

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

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