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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.btn-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #6c7a7b;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-links a:hover {
    color: #8B7355;
}

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

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #8B7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover,
.cta-secondary:hover {
    background: #6f5a43;
}

.cta-secondary {
    background: #2c3e50;
}

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

.intro-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2c3e50;
    text-align: center;
}

.services-split {
    background: #ffffff;
}

.service-row {
    display: flex;
    min-height: 500px;
}

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

.service-image,
.service-info {
    flex: 1;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 24px;
}

.btn-select-service,
.btn-submit {
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover,
.btn-submit:hover {
    background: #1a252f;
}

.why-us {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-us h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.why-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.why-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.form-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

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

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

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

.page-header {
    padding: 60px 20px 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
}

.header-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-top: 12px;
}

.about-content {
    padding: 80px 20px;
    background: #ffffff;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.about-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.methodology {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

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

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 16px;
}

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

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

.values-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #8B7355;
}

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

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

.team-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    color: #5a6c7d;
}

.experience-numbers {
    padding: 80px 20px;
    background: #2c3e50;
}

.numbers-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.number-card {
    text-align: center;
    min-width: 200px;
}

.big-number {
    font-size: 56px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 12px;
}

.number-card p {
    font-size: 16px;
    color: #bdc3c7;
}

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

.service-detail-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

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

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

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

.service-pricing {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

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

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

.cta-services {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-services p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a6c7d;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

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

.contact-map-placeholder {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin: 8px 0;
}

.contact-availability {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-availability h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.contact-availability p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

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

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

.thanks-container h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.thanks-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    border-bottom: 1px solid #e0e0e0;
}

.thanks-steps li:last-child {
    border-bottom: none;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: #8B7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-selected-service {
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 6px;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-primary {
    background: #8B7355;
    color: #ffffff;
}

.btn-primary:hover {
    background: #6f5a43;
}

.btn-secondary {
    background: #2c3e50;
    color: #ffffff;
}

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

.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

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

.legal-page h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

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

.legal-page a {
    color: #8B7355;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6f5a43;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

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

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

    .service-info {
        padding: 40px 20px;
    }

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

    .method-steps {
        flex-direction: column;
    }

    .about-split {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .numbers-grid {
        flex-direction: column;
        gap: 40px;
    }
}