* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a5f7a;
}

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 6%;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 520px;
    z-index: 10;
    padding-right: 40px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a5f7a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 38px;
    color: #546e7a;
}

.hero-visual-overlap {
    position: absolute;
    right: -8%;
    top: 12%;
    width: 58%;
    height: 70%;
    z-index: 1;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #134a5e;
}

.intro-narrow {
    padding: 90px 18%;
    background-color: #f8f9fa;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: #37474f;
}

.intro-text p {
    margin-bottom: 24px;
}

.why-section-offset {
    display: flex;
    align-items: center;
    padding: 100px 6%;
    gap: 60px;
}

.why-image-left {
    flex: 0 0 45%;
    background-color: #eceff1;
    border-radius: 8px;
    overflow: hidden;
}

.why-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content-right {
    flex: 1;
    padding-left: 20px;
}

.why-content-right h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a5f7a;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
    font-size: 20px;
}

.services-main {
    padding: 100px 6%;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a5f7a;
}

.section-header-center p {
    font-size: 19px;
    color: #546e7a;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-card-large {
    flex: 1 1 calc(50% - 15px);
}

.service-card-offset {
    margin-top: 40px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #eceff1;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px;
    color: #1a5f7a;
}

.service-card p {
    padding: 0 24px;
    margin-bottom: 16px;
    color: #546e7a;
    font-size: 15px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f7a;
    padding: 0 24px;
    margin: 16px 0;
}

.btn-select-service {
    margin: 20px 24px 24px;
    padding: 14px 28px;
    background-color: #1a5f7a;
    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: #134a5e;
}

.form-section-layered {
    padding: 100px 6%;
    background-color: #f8f9fa;
    position: relative;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-container {
    flex: 1;
    max-width: 540px;
    z-index: 10;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a5f7a;
}

.form-intro {
    margin-bottom: 32px;
    font-size: 16px;
    color: #546e7a;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #134a5e;
}

.form-visual-background {
    flex: 0 0 40%;
    height: 500px;
    background-color: #eceff1;
    border-radius: 8px;
    overflow: hidden;
}

.form-visual-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a5f7a;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #37474f;
}

.testimonials-inline {
    padding: 100px 6%;
    background-color: #eceff1;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #37474f;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a5f7a;
    font-size: 14px;
}

.process-section-stacked {
    padding: 100px 10%;
    background-color: #ffffff;
}

.process-section-stacked h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a5f7a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a5f7a;
}

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

.cta-final {
    padding: 100px 6%;
    background-color: #1a5f7a;
    text-align: center;
    color: #ffffff;
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5f7a;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-main {
    background-color: #263238;
    color: #b0bec5;
    padding: 60px 6% 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #37474f;
    border-bottom: 1px solid #37474f;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #90a4ae;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #78909c;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #263238;
    color: #ffffff;
    padding: 24px 6%;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #4fc3f7;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 100px 6%;
    background-color: #1a5f7a;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro {
    padding: 80px 18%;
    background-color: #ffffff;
}

.about-content-wide {
    font-size: 18px;
    line-height: 1.8;
}

.about-content-wide p {
    margin-bottom: 24px;
    color: #37474f;
}

.about-values-offset {
    display: flex;
    align-items: center;
    padding: 100px 6%;
    gap: 60px;
    background-color: #f8f9fa;
}

.value-image {
    flex: 0 0 48%;
    background-color: #eceff1;
    border-radius: 8px;
    overflow: hidden;
}

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

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5f7a;
}

.value-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #37474f;
}

.about-team {
    padding: 80px 14%;
    background-color: #ffffff;
    text-align: center;
}

.about-team h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a5f7a;
}

.team-description p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #37474f;
}

.about-quality {
    display: flex;
    align-items: center;
    padding: 100px 6%;
    gap: 60px;
    background-color: #f8f9fa;
}

.quality-content {
    flex: 1;
}

.quality-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5f7a;
}

.quality-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #37474f;
}

.quality-image {
    flex: 0 0 45%;
    background-color: #eceff1;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-service-area {
    padding: 80px 18%;
    background-color: #ffffff;
    text-align: center;
}

.about-service-area h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5f7a;
}

.about-service-area p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #37474f;
}

.about-cta {
    padding: 80px 6%;
    background-color: #1a5f7a;
    text-align: center;
    color: #ffffff;
}

.about-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5f7a;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.services-detailed {
    padding: 60px 6%;
}

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

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #eceff1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a5f7a;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #37474f;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

.cta-inline {
    display: inline-block;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #134a5e;
}

.services-cta {
    padding: 80px 6%;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a5f7a;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
}

.contact-info-section {
    padding: 80px 6%;
    display: flex;
    gap: 60px;
    background-color: #f8f9fa;
}

.contact-block {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a5f7a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #37474f;
}

.contact-approach {
    padding: 80px 18%;
    background-color: #ffffff;
}

.contact-approach h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a5f7a;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #37474f;
}

.contact-map-placeholder {
    padding: 80px 6%;
    background-color: #eceff1;
}

.map-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.map-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.map-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.thanks-container {
    padding: 120px 6%;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #546e7a;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-steps {
    padding-left: 24px;
}

.thanks-steps li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #37474f;
}

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

.thanks-next p {
    margin-bottom: 24px;
    font-size: 16px;
    color: #546e7a;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a5f7a;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #1a5f7a;
    margin-left: 12px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.legal-page {
    padding: 60px 18%;
    background-color: #ffffff;
}

.legal-content {
    font-size: 16px;
    line-height: 1.8;
    color: #37474f;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a5f7a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: #1a5f7a;
    text-decoration: underline;
}

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-visual-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

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

    .intro-narrow {
        padding: 60px 5%;
    }

    .why-section-offset {
        flex-direction: column;
    }

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

    .form-section-layered {
        flex-direction: column;
    }

    .testimonials-inline {
        flex-direction: column;
    }

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

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

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

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

    .about-values-offset,
    .about-quality {
        flex-direction: column;
    }
}