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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

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

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.hero-image-right {
    flex: 1;
    background: #e8e8e8;
}

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

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

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #34495e;
}

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    align-items: center;
}

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

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

.split-content-right {
    flex: 1;
    padding: 4rem;
}

.split-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.split-standard {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    align-items: center;
}

.split-content-left {
    flex: 1;
    padding: 4rem;
    background: #fafbfc;
}

.split-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-content-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

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

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

.services-preview {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: #ffffff;
}

.services-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header-centered p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #e8e8e8;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #5a6c7d;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-inline {
    background: #f1f3f5;
    padding: 5rem 2rem;
}

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

.testimonials-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.form-content-left {
    flex: 1;
    padding: 4rem;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-container-right {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

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

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-column p {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.page-hero-simple {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-hero-simple p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.team-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

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

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

.team-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #e8e8e8;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-member p {
    color: #7f8c8d;
}

.values-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.values-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-split {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #3498db;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-block-split {
    display: flex;
    min-height: 550px;
    align-items: center;
    margin-bottom: 0;
}

.service-content-left {
    flex: 1;
    padding: 4rem;
    background: #ffffff;
}

.service-content-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-content-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.service-block-reverse {
    display: flex;
    min-height: 550px;
    align-items: center;
    margin-bottom: 0;
}

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

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

.service-content-right {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
}

.service-content-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.price-large {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

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

.contact-info-centered {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

.contact-block p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-map {
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-note {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #3498db;
}

.contact-note h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-note p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-container {
    background: #ffffff;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 1rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .form-section-split,
    .service-block-split,
    .service-block-reverse {
        flex-direction: column;
    }

    .hero-content-left,
    .split-content-left,
    .split-content-right,
    .form-content-left,
    .form-container-right,
    .service-content-left,
    .service-content-right {
        padding: 2rem;
    }

    .hero-image-right img,
    .split-image-left img,
    .split-image-right img,
    .service-image-left img,
    .service-image-right img {
        min-height: 350px;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

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

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content-left h1 {
        font-size: 2rem;
    }

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

    .footer-container {
        flex-direction: column;
    }

    .page-hero-simple h1 {
        font-size: 2rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}