* {
    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 {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

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

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

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

.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: #5a6c7d;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-left p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.intro-right {
    flex: 1;
    background-color: #dfe6ed;
    overflow: hidden;
}

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

.services-showcase {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 40px;
}

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-visual {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
    min-height: 300px;
}

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

.btn-select-service {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.approach-split {
    display: flex;
    align-items: stretch;
}

.approach-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.approach-step {
    margin-bottom: 32px;
}

.approach-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.approach-step p {
    font-size: 16px;
    color: #5a6c7d;
}

.approach-right {
    flex: 1;
    background-color: #dfe6ed;
    overflow: hidden;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 60px auto;
    padding: 40px;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #7f8c8d;
    cursor: pointer;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.selected-service-display {
    margin-bottom: 24px;
    padding: 12px;
    background-color: #ecf0f1;
    font-size: 15px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

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

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

.testimonials-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    max-width: 340px;
    padding: 32px;
    background-color: #f8f9fa;
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-style: italic;
}

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

.cta-final,
.cta-about,
.cta-services,
.contact-cta {
    padding: 80px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 60px 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

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

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

.page-hero-simple h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero-simple p {
    font-size: 18px;
    color: #5a6c7d;
}

.story-split {
    display: flex;
    align-items: stretch;
}

.story-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.story-left p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.story-right {
    flex: 1;
    background-color: #dfe6ed;
    overflow: hidden;
}

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

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

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

.values-split-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-block {
    background-color: #ffffff;
    padding: 40px 60px;
}

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

.value-content p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-approach-split {
    display: flex;
    align-items: stretch;
}

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

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

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

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

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

.service-detail-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.service-price-block {
    margin: 24px 0;
    padding: 20px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.price-amount {
    font-size: 28px;
    color: #3498db;
    font-weight: 700;
}

.service-detail-visual {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
    min-height: 350px;
}

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

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

.contact-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-left h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-left > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.contact-info-block {
    margin-bottom: 32px;
}

.contact-info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-block p {
    font-size: 16px;
    color: #5a6c7d;
}

.email-static {
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-right {
    flex: 1;
    background-color: #dfe6ed;
    overflow: hidden;
}

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

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

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

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.service-confirmation {
    margin: 24px 0;
    padding: 20px;
    background-color: #e8f4f8;
}

.service-selected {
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    font-size: 16px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

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

.legal-page {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

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

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 40px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 30px;
    }

    .nav-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-split,
    .intro-split,
    .approach-split,
    .story-split,
    .team-approach-split,
    .contact-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .approach-left,
    .story-left,
    .contact-left {
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .services-showcase {
        padding: 40px 30px;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

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

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

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

    .services-detail {
        padding: 40px 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-page {
        padding: 40px 30px;
    }
}