* {
    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.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;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    border-radius: 50px;
    z-index: 1000;
}

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

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-items a:hover {
    color: #27ae60;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

.hero-offset {
    display: flex;
    min-height: 100vh;
    padding: 120px 40px 60px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
}

.hero-content-left p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(40px);
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.offset-intro {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-block {
    flex: 2;
}

.intro-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a252f;
}

.intro-block p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-reveal {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.problem-text {
    max-width: 700px;
    margin: 0 auto;
}

.problem-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.problem-text p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.solution-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.solution-image {
    flex: 1;
    position: relative;
    transform: translateY(-60px);
}

.solution-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 8px;
}

.solution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.solution-content h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.solution-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #2c3e50;
    position: relative;
    padding-left: 30px;
}

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

.cta-link {
    color: #27ae60;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #229954;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a252f;
}

.services-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 600px;
}

.service-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 600px;
}

.service-center {
    margin: 0 auto;
    max-width: 700px;
}

.service-card h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 15px;
}

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

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

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

.trust-section {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.trust-content p {
    font-size: 18px;
    color: #546e7a;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials-offset {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-item {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 40px;
}

.testimonial-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.testimonial-item p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #95a5a6;
}

.cta-sticky-trigger {
    padding: 100px 40px;
}

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

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-container-offset p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 40px;
}

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

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

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

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

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

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.final-cta-block {
    padding: 100px 40px;
    text-align: center;
    background-color: #ecf0f1;
}

.final-cta-block h3 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.footer-asymmetric {
    background-color: #1a252f;
    color: #ffffff;
    padding: 80px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 900;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: inline-block;
    padding: 16px 30px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-cta a:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.page-hero-offset {
    padding: 160px 40px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-hero-offset h1 {
    font-size: 52px;
    color: #1a252f;
    margin-bottom: 20px;
}

.page-hero-offset p {
    font-size: 20px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro-asymmetric {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-text-block p {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.7;
}

.team-offset {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.team-image-left {
    flex: 1;
}

.team-image-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.team-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.team-content-right p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
}

.team-values {
    list-style: none;
}

.team-values li {
    padding: 12px 0;
    font-size: 16px;
    color: #2c3e50;
    position: relative;
    padding-left: 30px;
}

.team-values li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.philosophy-item {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.philosophy-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.achievements-offset {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-content {
    flex: 1;
}

.achievements-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.achievements-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.achievements-image {
    flex: 1;
}

.achievements-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-block-offset {
    padding: 80px 40px;
    text-align: center;
}

.cta-block-offset h3 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #229954;
}

.services-full {
    padding: 60px 40px;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-image-left,
.service-image-right {
    flex: 1;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-block p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #2c3e50;
    position: relative;
    padding-left: 25px;
}

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

.service-pricing {
    margin-bottom: 25px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

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

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #229954;
}

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

.services-cta-final h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-cta-final p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

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

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

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-additional {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.contact-additional p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-hero {
    padding: 160px 40px 60px;
    text-align: center;
    background-color: #ecf0f1;
}

.thanks-hero h1 {
    font-size: 52px;
    color: #1a252f;
    margin-bottom: 20px;
}

.thanks-hero p {
    font-size: 20px;
    color: #27ae60;
}

.thanks-content {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.thanks-message {
    margin-bottom: 60px;
}

.thanks-message h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.thanks-message p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    margin-bottom: 15px;
}

.thanks-next-steps ul li a {
    color: #27ae60;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.thanks-next-steps ul li a:hover {
    color: #229954;
}

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

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

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

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

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .floating-nav {
        width: 95%;
        padding: 12px 20px;
    }

    .nav-items {
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-items a {
        font-size: 12px;
    }

    .ad-label {
        font-size: 10px;
        padding: 3px 10px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 100px 20px 40px;
    }

    .hero-content-left {
        padding-right: 0;
    }

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

    .hero-image-right {
        transform: translateY(0);
        margin-top: 40px;
    }

    .hero-image-right img {
        height: 400px;
    }

    .offset-intro {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .solution-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
    }

    .solution-image {
        transform: translateY(0);
    }

    .solution-image img {
        height: 400px;
    }

    .solution-content {
        padding-left: 0;
    }

    .services-grid-offset {
        gap: 30px;
    }

    .service-left,
    .service-right,
    .service-center {
        margin: 0;
        max-width: 100%;
    }

    .trust-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .team-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .team-image-left img {
        height: 400px;
    }

    .philosophy-blocks {
        flex-direction: column;
    }

    .achievements-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .service-block {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .service-image-left img,
    .service-image-right img {
        height: 300px;
    }

    .contact-layout {
        flex-direction: column;
        padding: 60px 20px;
    }

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

    .form-container-offset {
        padding: 40px 30px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}