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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    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: 20px;
}

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

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

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

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

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

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

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

.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: #34495e;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    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;
    background-color: #bdc3c7;
}

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

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

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

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #95a5a6;
}

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

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #34495e;
}

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

.cta-center {
    text-align: center;
}

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

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

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

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

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

.approach-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980b9;
}

.form-section {
    padding: 100px 60px;
    background-color: #2c3e50;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

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

.form-intro p {
    font-size: 18px;
    color: #ecf0f1;
}

.contact-form {
    background-color: #34495e;
    padding: 48px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background-color: #ffffff;
    color: #2c3e50;
}

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

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

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

.trust-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-block p,
.footer-block a {
    color: #ecf0f1;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(52, 73, 94, 0.5);
    border-radius: 4px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    max-width: 1400px;
    margin: 0 auto;
}

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

.page-hero-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

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

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

.hero-content-left p {
    font-size: 18px;
    color: #34495e;
}

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

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

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

.content-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.content-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

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

.content-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.methodology-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.method-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.method-step {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.method-step p {
    font-size: 16px;
    color: #34495e;
}

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

.team-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

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

.team-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.team-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.values-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.values-split-container {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

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

.value-item p {
    font-size: 16px;
    color: #34495e;
}

.cta-section {
    padding: 100px 60px;
    background-color: #3498db;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.page-intro-split {
    display: flex;
    min-height: 400px;
    background-color: #f8f9fa;
}

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

.intro-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-left p {
    font-size: 18px;
    color: #34495e;
}

.intro-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #95a5a6;
}

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

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

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    gap: 60px;
    align-items: center;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
}

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

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #34495e;
}

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

.price-block {
    margin-top: 24px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.price-note {
    font-size: 14px;
    color: #7f8c8d;
}

.service-image-right,
.service-image-left {
    flex: 1;
    max-width: 500px;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #95a5a6;
}

.order-form-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-wrapper > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #34495e;
    text-align: center;
}

.service-order-form .form-group {
    margin-bottom: 24px;
}

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

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

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

.contact-intro p {
    font-size: 18px;
    color: #34495e;
}

.contact-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.contact-details-split {
    display: flex;
    padding: 100px 60px;
    background-color: #ffffff;
    gap: 80px;
}

.details-left {
    flex: 1;
}

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

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

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

.contact-info-block p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

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

.details-right {
    flex: 1;
}

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

.details-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.contact-checklist {
    list-style: none;
    margin-bottom: 20px;
}

.contact-checklist li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #34495e;
}

.contact-checklist li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 1;
}

.location-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.location-section > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #34495e;
}

.location-details {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.location-item {
    flex: 1;
    min-width: 200px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.location-item p {
    font-size: 16px;
    color: #34495e;
}

.response-expectations {
    padding: 80px 60px;
    background-color: #ffffff;
}

.response-expectations h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.expectations-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.expectation-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.expectation-card p {
    font-size: 16px;
    color: #34495e;
}

.thanks-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-container > p {
    font-size: 17px;
    margin-bottom: 48px;
    color: #34495e;
}

.next-steps {
    margin-bottom: 48px;
    text-align: left;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.steps-list {
    padding-left: 24px;
}

.steps-list li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #34495e;
}

.thanks-info {
    margin-bottom: 48px;
    padding: 24px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

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

.thanks-info p {
    font-size: 16px;
    color: #34495e;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

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

.legal-page {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

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

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

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #34495e;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .content-split,
    .team-split,
    .page-hero-split,
    .page-intro-split,
    .contact-hero-split,
    .contact-details-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-content-left,
    .intro-content,
    .approach-content,
    .content-text,
    .team-text {
        padding: 60px 40px;
    }

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

    .services-grid,
    .trust-grid,
    .method-grid,
    .values-split-container,
    .expectations-grid {
        flex-direction: column;
    }

    .main-nav {
        flex-basis: 100%;
        justify-content: center;
    }

    .form-wrapper {
        padding: 40px 24px;
    }

    .legal-container {
        padding: 40px 24px;
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 16px 24px;
    }

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

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

    .services-preview h2,
    .methodology-section h2,
    .values-section h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}