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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 500px;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
    max-width: 500px;
}

.hero-right {
    flex: 1 1 500px;
    background-color: #34495e;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.why-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.why-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.why-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

.services-asymmetric {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    padding-left: 40px;
    color: #2c3e50;
}

.service-grid-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    flex-wrap: wrap;
}

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

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

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

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

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.form-section {
    padding: 100px 0;
    background-color: #ecf0f1;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 250px;
    text-align: center;
}

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

.trust-item p {
    font-size: 16px;
    color: #ecf0f1;
}

.footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 200px;
}

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
}

.disclaimer {
    border-top: 1px solid #546e7a;
    padding-top: 30px;
    margin-top: 30px;
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.btn-cookie-reject:hover {
    background-color: #6c7a7b;
    transform: translateY(-2px);
}

.page-header {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

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

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #546e7a;
}

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

.service-detail-content li {
    margin-bottom: 8px;
    color: #546e7a;
}

.service-detail-image {
    flex: 1 1 400px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 24px;
}

.cta-services {
    padding: 80px 0;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-services .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-services .btn-primary:hover {
    background-color: #ecf0f1;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.about-image {
    flex: 1 1 400px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-intro p {
    font-size: 18px;
    color: #546e7a;
}

.team-image-full {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
    min-height: 500px;
}

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

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

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

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

.process-step {
    flex: 1 1 350px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

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

.cta-about {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

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

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

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info-block {
    flex: 1 1 450px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-item .note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1 1 500px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px 24px;
    border-radius: 6px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.note-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.note-box p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #546e7a;
}

.note-box a {
    color: #3498db;
    text-decoration: none;
}

.note-box a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

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

.thanks-service {
    margin-bottom: 32px;
}

.service-selected {
    font-size: 16px;
    color: #2c3e50;
    background-color: #ecf0f1;
    padding: 12px 20px;
    border-radius: 6px;
    display: inline-block;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
}

.thanks-next h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-next ul {
    margin-left: 20px;
}

.thanks-next li {
    margin-bottom: 10px;
    color: #546e7a;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #546e7a;
}

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

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

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .service-card-large,
    .service-card-large:nth-child(even) {
        flex-direction: column;
    }

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

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

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

    .section-title-offset {
        padding-left: 0;
        text-align: center;
    }

    .nav {
        gap: 20px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .form-wrapper {
        padding: 30px;
    }
}