* {
    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-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 3px;
}

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
}

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

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

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

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1e4029;
}

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

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

.intro-section {
    padding: 100px 0;
}

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

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

.split-content,
.split-image {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a2332;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.split-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.section-header-offset {
    margin-bottom: 60px;
}

.label-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2d5f3f;
    background: #e8f4ed;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.section-header-offset h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a2332;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a2332;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    background: #2d5f3f;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1e4029;
}

.approach-section {
    padding: 100px 0;
}

.process-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    min-width: 60px;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a2332;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.testimonials-section {
    padding: 100px 0;
    background: #1a2332;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e8ecf0;
}

.testimonial-author {
    font-size: 14px;
    color: #95a5b8;
    font-style: italic;
}

.form-section {
    padding: 100px 0;
}

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

.form-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a2332;
}

.form-header p {
    font-size: 17px;
    color: #4a5568;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4d9e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.btn-submit {
    width: 100%;
    background: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e4029;
}

.footer {
    background: #1a2332;
    color: #e8ecf0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-col ul li a {
    color: #95a5b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #e8ecf0;
    font-size: 14px;
    flex: 1;
    min-width: 300px;
}

.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: background 0.3s;
}

.btn-accept {
    background: #2d5f3f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1e4029;
}

.btn-reject {
    background: transparent;
    color: #e8ecf0;
    border: 1px solid #e8ecf0;
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf0 100%);
}

.page-hero h1 {
    font-size: 52px;
    color: #1a2332;
    margin-bottom: 16px;
}

.lead {
    font-size: 20px;
    color: #4a5568;
}

.about-content {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a2332;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

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

.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-box {
    text-align: center;
    padding: 60px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.cta-box p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
}

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

.service-item-full {
    margin-bottom: 80px;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a2332;
}

.service-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-details h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #1a2332;
}

.service-details ul {
    margin-bottom: 24px;
}

.service-details ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.price-box {
    background: #e8f4ed;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
}

.price-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2d5f3f;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2d5f3f;
}

.process-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-overview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a2332;
}

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

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.timeline-marker {
    min-width: 50px;
    height: 50px;
    background: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a2332;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-page {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    justify-content: center;
}

.contact-info-section {
    max-width: 600px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a2332;
}

.contact-info-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a2332;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.response-time {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #2d5f3f;
}

.response-time h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1a2332;
}

.response-time p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a2332;
}

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

.selected-service {
    background: #e8f4ed;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.selected-service h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a2332;
}

.selected-service p {
    font-size: 16px;
    color: #4a5568;
}

.next-steps {
    text-align: left;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a2332;
}

.next-steps ul {
    margin-left: 20px;
}

.next-steps ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

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

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a2332;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2332;
}

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

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e4029;
}

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

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a2332;
}

.cookies-table td {
    font-size: 14px;
    color: #4a5568;
}

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

    .split-layout,
    .split-layout.reverse,
    .service-split,
    .service-item-full.reverse .service-split {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .split-content h2,
    .service-details h2 {
        font-size: 28px;
    }

    .section-header-offset h2 {
        font-size: 32px;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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