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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

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

.brand-zone {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.nav-primary {
    display: flex;
    gap: 30px;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 30px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}

.hero-text-block {
    max-width: 580px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 8px;
    margin-left: 60px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.hero-image-float {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 1;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    max-width: 550px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.intro-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.services-header-left {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.services-header-left p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.service-large {
    flex: 2;
    min-width: 400px;
}

.service-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
}

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

.form-section-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.form-container-asymmetric {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    max-width: 700px;
}

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

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

.form-intro p {
    font-size: 16px;
    color: #34495e;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    font-size: 15px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.trust-section {
    padding: 100px 30px;
}

.trust-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

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

.trust-text p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.trust-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 50px 30px;
}

.disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #34495e;
    line-height: 1.7;
}

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

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 15px;
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    gap: 60px;
}

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.page-hero-narrow {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

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

.page-hero-narrow p {
    font-size: 20px;
    color: #7f8c8d;
}

.about-story {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-offset {
    background-color: #f8f9fa;
    padding: 100px 30px;
}

.values-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}

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

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

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

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

.value-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.team-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-intro-right {
    flex: 1;
    order: 2;
}

.team-intro-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro-right p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-visual {
    flex: 1;
    order: 1;
    border-radius: 8px;
    overflow: hidden;
}

.team-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-section {
    background-color: #f8f9fa;
    padding: 100px 30px;
}

.approach-container {
    max-width: 900px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

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

.cta-about {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    text-align: center;
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.page-hero-wide {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 30px;
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.hero-content-center p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.service-details {
    flex: 1;
}

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

.service-details p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
}

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

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

.services-cta {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-box-centered p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 30px;
}

.page-hero-contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 30px;
    text-align: center;
}

.page-hero-contact h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.page-hero-contact p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
}

.contact-blocks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.note-small {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

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

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

.contact-map-placeholder {
    background-color: #f8f9fa;
    padding: 60px 30px;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-info p {
    font-size: 16px;
    color: #34495e;
}

.thanks-hero {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 30px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 24px;
    color: #27ae60;
    font-weight: 700;
}

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.step-item p {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 16px;
    line-height: 1.6;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980b9;
    text-decoration: underline;
}

.thanks-visual {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

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

.legal-container p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-container li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        min-height: auto;
    }

    .hero-image-float {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .intro-offset,
    .trust-layout,
    .team-section,
    .contact-info-layout {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .brand-zone {
        flex-direction: column;
        gap: 10px;
    }

    .nav-primary {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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