* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5a8c;
    --secondary-color: #4a90d9;
    --accent-color: #f7a74b;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background-color: var(--bg-white);
}

.split-right {
    background-color: var(--bg-light);
}

.hero-split .split-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-split .split-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-image {
    padding: 0;
    overflow: hidden;
}

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

.cta-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: fit-content;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 167, 75, 0.3);
}

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

.value-split.reverse {
    flex-direction: row-reverse;
}

.value-split h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.value-split p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.value-image {
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.section-header h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 24px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 25px 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.price {
    margin: 0 25px 25px;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.form-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.form-split .split-left {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.form-split .split-left h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 25px;
}

.form-split .split-left p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 35px;
}

.form-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.check-icon {
    font-size: 24px;
    margin-right: 15px;
    color: var(--accent-color);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-split h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-split p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.trust-image {
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--accent-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 40px;
    text-align: center;
    color: var(--bg-white);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

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

.service-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-detail-split h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-detail-split p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-includes {
    margin-top: 30px;
}

.service-includes h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-includes ul {
    list-style: none;
}

.service-includes ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-includes ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-image-large {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--bg-light);
}

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

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 167, 75, 0.4);
}

.about-split {
    display: flex;
    min-height: 500px;
    padding: 80px 40px;
}

.about-split h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-split p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--bg-light);
}

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

.values-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.value-card {
    flex: 0 0 calc(50% - 18px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-split h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.approach-split p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.process-list {
    list-style: none;
    margin-top: 25px;
}

.process-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.process-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 24px;
}

.approach-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--bg-light);
}

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

.experience-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.experience-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.experience-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 50px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
}

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

.team-split h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-split p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--bg-light);
}

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

.contact-split {
    display: flex;
    min-height: 500px;
    padding: 80px 40px;
}

.contact-split h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

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

.contact-info-block h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--bg-light);
}

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

.location-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.location-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-main {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin: 40px auto;
    max-width: 500px;
}

.next-steps h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

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

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 38px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.legal-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .form-split,
    .trust-split,
    .about-split,
    .approach-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .value-split.reverse,
    .trust-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 calc(50% - 18px);
    }

    .value-card {
        flex: 0 0 100%;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .ad-label {
        display: none;
    }

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

    .split-left,
    .split-right {
        padding: 50px 30px;
    }

    .service-card {
        flex: 0 0 100%;
    }

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

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

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