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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 80vh;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image 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;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.problem-section {
    padding: 100px 8%;
    background-color: #ffffff;
}

.problem-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.problem-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.problem-card {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.services-split {
    display: flex;
    min-height: 600px;
}

.services-text {
    flex: 1;
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.services-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-text > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #546e7a;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-item {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-item p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #546e7a;
}

.service-item .price {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #3498db;
}

.services-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.trust-container {
    display: flex;
    min-height: 500px;
}

.trust-left {
    flex: 1;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.trust-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #546e7a;
}

.quote {
    margin-top: 40px;
    padding: 24px;
    border-left: 4px solid #3498db;
    background-color: #f8f9fa;
}

.quote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
    color: #2c3e50;
}

.quote cite {
    font-size: 14px;
    font-style: normal;
    color: #7f8c8d;
}

.trust-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-section {
    padding: 80px 8%;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-row button {
    flex: 1;
    padding: 14px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-row button:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    padding: 60px 8%;
    background-color: #f8f9fa;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

.footer-split {
    background-color: #1a252f;
    color: #ecf0f1;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 60px 8% 40px;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
}

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

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

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

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

.btn-reject {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-reject:hover {
    background-color: #d5dbdb;
}

.page-hero {
    padding: 100px 8%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    min-height: 600px;
}

.about-text {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 8%;
    background-color: #f8f9fa;
}

.values-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.value-item {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.team-split {
    display: flex;
    min-height: 500px;
}

.team-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.btn-secondary:hover {
    background-color: #1a252f;
}

.approach-section {
    padding: 100px 8%;
    background-color: #ffffff;
}

.approach-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.approach-steps {
    display: flex;
    gap: 32px;
}

.step-box {
    flex: 1;
    padding: 32px 24px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.step-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.step-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

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

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #546e7a;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-pricing {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-right: 12px;
}

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

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-centered {
    padding: 80px 8%;
    background-color: #ffffff;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.btn-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.contact-form-side {
    flex: 1;
    padding: 60px 8%;
    background-color: #f8f9fa;
}

.contact-form-side h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a252f;
}

.contact-form-side > 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;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit-full {
    padding: 14px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.contact-info-side {
    flex: 1;
    padding: 60px 8%;
    background-color: #ffffff;
}

.contact-info-side h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.info-block .note {
    margin-top: 12px;
    font-size: 13px;
    font-style: italic;
    color: #7f8c8d;
}

.map-placeholder {
    padding: 0 8% 60px;
}

.map-box {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.map-box p {
    font-size: 16px;
    color: #546e7a;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 8%;
}

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

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.service-confirmation {
    margin: 32px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 15px;
    color: #2c3e50;
}

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

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

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a252f;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #546e7a;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-container ul,
.legal-container ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #546e7a;
}

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

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

.legal-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.legal-table td {
    font-size: 14px;
    color: #546e7a;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .services-split,
    .trust-container,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .problem-grid,
    .values-split,
    .approach-steps {
        flex-direction: column;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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