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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    background: #ecf0f1;
    border-radius: 15px;
}

.hero-visual {
    margin-top: 90px;
    min-height: 85vh;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 64px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-lead {
    font-size: 28px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
    font-weight: 300;
}

.story-container p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.visual-block {
    padding: 0;
}

.image-left-layout {
    display: flex;
    min-height: 600px;
}

.image-side {
    flex: 1;
    background-color: #dfe6e9;
}

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

.content-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.content-side h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.insight-reveal {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.insight-container h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #ffffff;
}

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

.citation {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.citation:hover {
    color: #5dade2;
}

.visual-split {
    padding: 0;
}

.split-layout {
    display: flex;
    min-height: 550px;
}

.split-text {
    flex: 1;
    padding: 70px 60px;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

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

.trust-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.trust-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.services-preview {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-item {
    flex: 1 1 calc(33.333% - 35px);
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.service-item h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 15px;
    color: #555;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #3498db;
    margin: 20px 25px 15px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 0;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #34495e;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-section.hidden {
    display: none;
}

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

.form-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.final-cta {
    padding: 100px 20px;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

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

.cta-container h2 {
    font-size: 46px;
    margin-bottom: 25px;
    color: #ffffff;
}

.cta-container p {
    font-size: 22px;
    line-height: 1.6;
    color: #ecf0f1;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.reference-item {
    font-size: 13px;
    line-height: 1.6;
}

.reference-item a {
    color: #3498db;
    text-decoration: none;
}

.reference-item a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(52, 73, 94, 0.5);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #95a5a6;
}

.page-hero {
    margin-top: 90px;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

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

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

.page-hero-content p {
    font-size: 22px;
    color: #ecf0f1;
}

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

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 60px;
}

.lead-text {
    font-size: 28px;
    line-height: 1.6;
    color: #2c3e50;
    font-weight: 300;
}

.about-image-block {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #dfe6e9;
}

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

.about-story h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.values-list {
    margin: 20px 0 20px 30px;
}

.values-list li {
    font-size: 18px;
    line-height: 2;
    color: #555;
}

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

.service-detail-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: #dfe6e9;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #34495e;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.service-detail-content ul {
    margin: 10px 0 20px 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.service-detail-price {
    font-size: 26px;
    font-weight: 600;
    color: #3498db;
    margin: 25px 0;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
}

.btn-service-cta:hover {
    background-color: #34495e;
}

.process-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.process-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 10px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

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

.contact-info-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.no-link {
    color: #555;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #ecf0f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #7f8c8d;
}

.thanks-section {
    margin-top: 90px;
    padding: 120px 20px;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 24px;
    margin-bottom: 30px;
    color: #3498db;
    font-weight: 600;
}

.thanks-details {
    margin-bottom: 35px;
}

.service-selected {
    font-size: 20px;
    color: #555;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

.thanks-info {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.thanks-next {
    font-size: 19px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-links {
    list-style: none;
    margin-top: 20px;
}

.thanks-links li {
    margin-bottom: 15px;
}

.thanks-links li a {
    font-size: 18px;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.thanks-links li a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-section {
    margin-top: 90px;
    padding: 80px 20px;
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-container ul {
    margin: 15px 0 20px 30px;
}

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

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-floating {
        top: 10px;
        width: 95%;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .hero-title {
        font-size: 40px;
    }

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

    .story-lead {
        font-size: 22px;
    }

    .image-left-layout {
        flex-direction: column;
    }

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

    .testimonials {
        flex-direction: column;
    }

    .service-item {
        min-width: 280px;
    }

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

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

    .service-detail-content {
        padding: 30px;
    }

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

    .contact-info-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}