* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(8px);
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

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

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

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

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

.header-minimal {
    padding: 32px 0;
    border-bottom: 1px solid #ecf0f1;
}

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

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

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

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

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

.hero-minimal {
    padding: 120px 0 100px;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color: #5d6d7e;
    margin-bottom: 48px;
    line-height: 1.6;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 42px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-outline-large {
    display: inline-block;
    padding: 18px 42px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-large:hover {
    background: #2c3e50;
    color: #ffffff;
}

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

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.section-title-large {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 36px;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 24px;
}

.why-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.split-layout-reverse {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 18px;
}

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

.section-title-center {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.8px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.step-card {
    flex: 1;
    min-width: 240px;
    padding: 36px 28px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.step-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    padding: 42px 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

.cta-inline {
    padding: 80px 0;
    text-align: center;
}

.cta-text {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #2c3e50;
}

.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonial-block {
    padding: 42px 0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-block:last-child {
    border-bottom: none;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    font-size: 17px;
    color: #7f8c8d;
    font-weight: 600;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.final-cta {
    padding: 120px 0;
    text-align: center;
    background: #f0f4f8;
}

.footer-minimal {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #34495e;
}

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

.page-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: #f8f9fa;
}

.page-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 20px;
    color: #5d6d7e;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 36px 28px;
}

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

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #5d6d7e;
}

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

.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.team-member {
    flex: 0 1 320px;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-role {
    font-size: 16px;
    color: #3498db;
    margin-bottom: 16px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #5d6d7e;
}

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

.cta-text-center {
    text-align: center;
    font-size: 20px;
    color: #5d6d7e;
    margin-bottom: 36px;
}

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

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 48px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    background: #f8f9fa;
    padding: 36px 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

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

.service-detail-content {
    padding: 42px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

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

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 36px;
}

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

.contact-detail h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #5d6d7e;
}

.contact-detail a {
    color: #3498db;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin: 0;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

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

.thanks-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #27ae60;
    letter-spacing: -1px;
}

.thanks-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 32px;
}

.thanks-service-info {
    margin-bottom: 32px;
}

.service-highlight {
    font-size: 20px;
    color: #2c3e50;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.thanks-subtext {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 42px;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

.steps-grid {
    display: flex;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

.legal-page ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
    padding: 16px;
    font-size: 16px;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title-large {
        font-size: 36px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
        gap: 42px;
    }

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

    .nav-main {
        gap: 20px;
    }

    .services-grid,
    .process-steps,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
        gap: 48px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-title {
        font-size: 38px;
    }

    .thanks-title {
        font-size: 38px;
    }
}