* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.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: 1rem;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #27ae60;
    color: white;
}

.btn-cookie:hover {
    background-color: #229954;
}

.btn-cookie-alt {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-asymmetric {
    background-color: #34495e;
    color: white;
    padding: 1.5rem 2rem;
}

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

.brand-area {
    flex: 0 0 auto;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.nav-main {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-main a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-main a:hover {
    opacity: 0.7;
}

.ad-notice {
    font-size: 0.85rem;
    color: #ecf0f1;
    border-left: 2px solid #ecf0f1;
    padding-left: 1rem;
    opacity: 0.8;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    background-color: #ecf0f1;
}

.hero-content-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #34495e;
    color: white;
}

.hero-content-left h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    background-color: #95a5a6;
}

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

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-narrow {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #34495e;
}

.services-stacked {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 15%;
    color: #2c3e50;
}

.service-card-asymmetric {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: flex-start;
    background-color: #ffffff;
}

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

.service-image {
    flex: 1;
    background-color: #bdc3c7;
    min-height: 350px;
}

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

.service-details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.price-tag {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #3498db;
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.form-section-offset {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto 0 10%;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
}

.form-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    color: #34495e;
}

.form-field input,
.form-field textarea {
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.selected-service-display {
    padding: 1rem;
    background-color: #e8f8f5;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.btn-submit {
    background-color: #27ae60;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: #34495e;
    color: white;
    border-radius: 8px;
}

.trust-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.trust-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
}

.page-hero-small {
    background-color: #34495e;
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-hero-small h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-small p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.about-text-block {
    max-width: 900px;
    margin: 0 0 3rem 10%;
}

.about-text-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-image-offset {
    margin: 4rem 0 4rem 5%;
    background-color: #bdc3c7;
}

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

.about-values {
    margin: 5rem 0;
    padding: 0 5%;
}

.about-values h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.team-section {
    margin: 5rem 0;
    padding: 0 3%;
}

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

.team-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.team-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.about-cta {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.about-cta p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.btn-secondary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-full {
    margin-bottom: 4rem;
    background-color: #ffffff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #34495e;
    color: white;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 2rem;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    background-color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.service-body {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
}

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

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

.service-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-description h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-description li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.services-cta {
    text-align: center;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    max-width: 900px;
    border-radius: 8px;
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.btn-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.contact-layout {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
    padding: 2rem;
}

.contact-info-block h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #bdc3c7;
    min-height: 400px;
}

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

.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid #27ae60;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;
}

.thanks-details {
    padding: 1.5rem;
    background-color: #e8f8f5;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next ol {
    list-style-position: inside;
    padding-left: 1rem;
}

.thanks-next li {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
}

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

.legal-page {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-page h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

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

.cookie-table thead {
    background-color: #34495e;
    color: white;
}

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

.cookie-table tbody tr:nth-child(even) {
    background-color: #ecf0f1;
}

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

    .hero-content-left h2 {
        font-size: 2.2rem;
    }

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

    .service-body,
    .service-full.reverse .service-body {
        flex-direction: column;
    }

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

    .section-title-offset {
        margin-left: 0;
    }

    .form-container {
        margin: 0 auto;
    }

    .nav-main {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-content-left {
        padding: 3rem 1.5rem;
    }

    .hero-content-left h2 {
        font-size: 1.8rem;
    }

    .hero-content-left p {
        font-size: 1.1rem;
    }

    .brand-title {
        font-size: 1.5rem;
    }

    .nav-main {
        font-size: 0.9rem;
        gap: 1rem;
    }

    .service-details h4 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .trust-points {
        flex-direction: column;
    }
}