* {
    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;
    display: flex;
    min-height: 100vh;
}

.ad-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    z-index: 1000;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background: #1a252f;
    color: #ecf0f1;
    padding: 80px 25px 30px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
    color: #3498db;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 18px;
}

.nav-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.nav-footer-links {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-footer-links a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.nav-footer-links a:hover {
    color: #95a5a6;
}

.main-content {
    margin-left: 220px;
    flex: 1;
    padding-top: 32px;
}

.hero-asymmetric {
    display: flex;
    min-height: 520px;
    position: relative;
    margin-bottom: 80px;
    align-items: stretch;
}

.hero-text-block {
    flex: 0 0 45%;
    padding: 70px 50px 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-text-block h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.hero-image-offset {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #d5dce3;
}

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

.intro-offset {
    display: flex;
    margin-bottom: 90px;
    padding: 0 60px;
    gap: 70px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 0 0 55%;
}

.intro-narrow h2 {
    font-size: 34px;
    margin-bottom: 28px;
    line-height: 1.3;
    color: #34495e;
}

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

.intro-image-side {
    flex: 1;
    margin-top: 40px;
    overflow: hidden;
    background: #e8ecef;
}

.intro-image-side img {
    width: 100%;
    height: auto;
}

.services-grid {
    padding: 0 60px 90px;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 50px;
    margin-left: 80px;
}

.section-header-offset h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 17px;
    color: #5a6c7d;
}

.services-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(50% - 15px);
    background: white;
    border: 1px solid #e1e8ed;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card-large .service-visual {
    flex: 0 0 45%;
}

.service-card-large .service-content {
    flex: 1;
}

.service-card-wide {
    flex: 0 0 calc(66.66% - 15px);
}

.service-visual {
    background: #d5dce3;
    overflow: hidden;
}

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

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

.btn-select-service {
    padding: 14px 28px;
    background: #34495e;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2c3e50;
}

.trust-block {
    background: #ecf0f1;
    padding: 80px 60px;
    margin-bottom: 90px;
}

.trust-content-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 0 0 50%;
}

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

.trust-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-left: 4px solid #3498db;
}

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

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.process-section {
    padding: 0 60px 90px;
}

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

.process-flow {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    padding: 35px 25px;
    background: #f8f9fa;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

.process-step p {
    font-size: 15px;
    color: #5a6c7d;
}

.form-section {
    background: #34495e;
    padding: 80px 60px;
    margin-bottom: 90px;
}

.form-container-offset {
    max-width: 800px;
    margin-left: 100px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: white;
}

.form-intro p {
    font-size: 17px;
    color: #bdc3c7;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #7f8c8d;
    background: white;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-group-checkbox label {
    color: #ecf0f1;
    font-size: 14px;
}

.form-group-checkbox a {
    color: #3498db;
}

.btn-submit {
    padding: 16px 40px;
    background: #27ae60;
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #229954;
}

.disclaimer-section {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 40px 60px;
    margin-bottom: 90px;
}

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

.footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 60px 60px 30px;
    margin-left: -220px;
    padding-left: 280px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

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

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

.btn-cookie-reject {
    background: #95a5a6;
    color: white;
}

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

.btn-cookie-info {
    padding: 12px 20px;
    color: #3498db;
    text-decoration: none;
    border: 1px solid #3498db;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-cookie-info:hover {
    background: #3498db;
    color: white;
}

.about-hero {
    padding: 70px 60px 60px;
    background: #f8f9fa;
    margin-bottom: 80px;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.about-hero-content p {
    font-size: 20px;
    color: #5a6c7d;
}

.about-story {
    padding: 0 60px 80px;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 0 0 55%;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #34495e;
}

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

.story-image {
    flex: 1;
    overflow: hidden;
    background: #e8ecef;
}

.story-image img {
    width: 100%;
    height: auto;
}

.values-section {
    background: #ecf0f1;
    padding: 80px 60px;
    margin-bottom: 80px;
}

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

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

.value-item {
    flex: 0 0 calc(50% - 15px);
    background: white;
    padding: 35px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.team-section {
    padding: 0 60px 80px;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 45px;
    color: #2c3e50;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-intro-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
    max-width: 700px;
}

.team-image {
    overflow: hidden;
    background: #d5dce3;
}

.team-image img {
    width: 100%;
    height: auto;
}

.approach-section {
    background: #34495e;
    padding: 80px 60px;
    margin-bottom: 80px;
}

.approach-content {
    max-width: 900px;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: white;
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #ecf0f1;
    line-height: 1.7;
}

.cta-about {
    background: #3498db;
    padding: 70px 60px;
    text-align: center;
    margin-bottom: 80px;
}

.cta-about-content h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: white;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: white;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: #ecf0f1;
}

.services-hero {
    padding: 70px 60px 60px;
    background: #f8f9fa;
    margin-bottom: 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.services-hero p {
    font-size: 19px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 0 60px 90px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-block {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

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

.service-detail-content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
}

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

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

.service-detail-price {
    margin-top: auto;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.price-label {
    font-size: 15px;
    color: #7f8c8d;
    display: block;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 38px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    background: #d5dce3;
}

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

.services-cta {
    background: #ecf0f1;
    padding: 70px 60px;
    text-align: center;
    margin-bottom: 80px;
}

.services-cta-content h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.services-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.contact-hero {
    padding: 70px 60px 60px;
    background: #f8f9fa;
    margin-bottom: 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 19px;
    color: #5a6c7d;
}

.contact-info-section {
    padding: 0 60px 80px;
}

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

.contact-info-block {
    flex: 0 0 50%;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #34495e;
}

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

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

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

.contact-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #856404;
    line-height: 1.6;
}

.contact-image-block {
    flex: 1;
    overflow: hidden;
    background: #d5dce3;
}

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

.contact-visit-section {
    background: #ecf0f1;
    padding: 80px 60px;
    margin-bottom: 80px;
}

.visit-content {
    max-width: 900px;
}

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

.visit-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-faq-section {
    padding: 0 60px 80px;
}

.contact-faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background: #f8f9fa;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #34495e;
}

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map-note {
    background: #34495e;
    padding: 50px 60px;
    margin-bottom: 80px;
}

.map-note-content p {
    font-size: 17px;
    color: #ecf0f1;
    max-width: 900px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-details {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 40px;
    text-align: left;
}

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

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-contact-info {
    background: #ecf0f1;
    padding: 25px;
    margin-bottom: 40px;
}

.thanks-contact-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

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

.btn-return,
.btn-services {
    padding: 14px 28px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-return {
    background: #3498db;
    color: white;
}

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

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

.btn-services:hover {
    background: #3498db;
    color: white;
}

.legal-content {
    padding: 70px 60px 90px;
    max-width: 1000px;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 18px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 180px;
        padding: 70px 20px 25px;
    }

    .main-content {
        margin-left: 180px;
    }

    .footer {
        margin-left: -180px;
        padding-left: 200px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-block {
        flex: 1;
    }

    .hero-image-offset {
        min-height: 350px;
    }

    .intro-offset,
    .trust-content-split,
    .story-layout,
    .contact-layout,
    .service-detail-block {
        flex-direction: column;
    }

    .process-flow {
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 20px);
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .footer {
        margin-left: 0;
        padding-left: 60px;
    }

    .hero-text-block,
    .intro-offset,
    .services-grid,
    .trust-block,
    .process-section,
    .form-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .services-cards-asymmetric {
        flex-direction: column;
    }

    .service-card,
    .service-card-large,
    .service-card-wide {
        flex: 1;
    }

    .service-card-large {
        flex-direction: column;
    }

    .value-item,
    .faq-item,
    .process-step {
        flex: 1;
    }

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

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