* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #3498db;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #95a5a6;
    --white: #ffffff;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover {
    border-bottom-color: var(--secondary);
}

.hero-offset {
    padding: 8rem 5% 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.hero-text-block {
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.hero-image-block {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.intro-asymmetric {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: var(--light);
}

.intro-left,
.intro-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-left h2 {
    font-size: 2rem;
    color: var(--primary);
    line-height: 1.3;
}

.intro-left p,
.intro-right p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
}

.intro-right img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-layer {
    padding: 4rem 5%;
    background: var(--primary);
    color: var(--white);
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.services-showcase {
    padding: 5rem 5%;
}

.section-header-offset {
    margin-bottom: 3rem;
    max-width: 600px;
}

.section-header-offset h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: var(--gray);
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
}

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

.process-visual {
    padding: 5rem 5%;
    background: var(--light);
}

.process-intro {
    margin-bottom: 3rem;
}

.process-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
}

.process-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-block.offset {
    margin-left: 0;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.step-block p {
    color: var(--dark);
    line-height: 1.7;
}

.testimonial-layer {
    padding: 5rem 5%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-wrap {
    max-width: 700px;
}

.testimonial-wrap.offset {
    align-self: flex-end;
}

.testimonial-wrap blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-wrap cite {
    color: var(--secondary);
    font-style: normal;
    font-size: 1rem;
}

.form-section-asymmetric {
    padding: 5rem 5%;
    background: var(--light);
}

.form-intro {
    margin-bottom: 3rem;
    max-width: 600px;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--gray);
}

.project-form {
    max-width: 700px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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: var(--accent);
}

.btn-submit {
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.cta-sticky-trigger {
    height: 1px;
    margin: 3rem 0;
}

.cta-sticky {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease;
    z-index: 900;
}

.cta-sticky.visible {
    bottom: 0;
}

.btn-sticky {
    background: var(--secondary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
}

.btn-sticky:hover {
    background: #d35400;
}

.footer-asymmetric {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gray);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray);
}

.cookie-banner {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    color: var(--dark);
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-cookie-accept {
    background: var(--secondary);
    color: var(--white);
}

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

.btn-cookie-reject {
    background: var(--gray);
    color: var(--white);
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

.page-hero-services,
.page-hero-about,
.page-hero-contact {
    padding: 10rem 5% 4rem;
    background: var(--light);
    text-align: center;
}

.page-hero-services h1,
.page-hero-about h1,
.page-hero-contact h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
}

.services-detailed {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
}

.service-detail-card.reverse {
    background: var(--white);
}

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

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark);
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
}

.cta-services,
.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.cta-services h2,
.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services p,
.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.about-story {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.story-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.values-section {
    padding: 5rem 5%;
    background: var(--light);
}

.values-section h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--dark);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 5%;
    text-align: center;
}

.team-section h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark);
}

.approach-section {
    padding: 5rem 5%;
    background: var(--light);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-block h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.approach-block p {
    color: var(--dark);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.approach-image {
    overflow: hidden;
    border-radius: 10px;
}

.approach-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.contact-main {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.contact-block p {
    color: var(--dark);
    line-height: 1.7;
}

.contact-block a {
    color: var(--accent);
    text-decoration: underline;
}

.contact-block .note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-cta {
    padding: 5rem 5%;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    min-height: 80vh;
    padding: 8rem 5% 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.thanks-info {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.next-steps {
    list-style: decimal;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-steps li {
    color: var(--dark);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.legal-page {
    padding: 8rem 5% 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--gray);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .hero-content-wrap {
        flex-direction: row;
        align-items: center;
    }

    .hero-text-block {
        flex: 1;
    }

    .hero-image-block {
        flex: 1;
        max-width: 500px;
    }

    .hero-text-block h1 {
        font-size: 3.5rem;
    }

    .intro-asymmetric {
        flex-direction: row;
        gap: 5rem;
    }

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

    .trust-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .services-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .service-card.medium {
        width: calc(50% - 1rem);
    }

    .service-card.small {
        width: calc(33.333% - 1.5rem);
    }

    .process-steps-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-block {
        width: calc(50% - 1.25rem);
    }

    .step-block.offset {
        margin-left: 2rem;
        margin-top: -2rem;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .btn-submit {
        width: auto;
        padding: 1rem 4rem;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .service-detail-card {
        flex-direction: row;
        padding: 3rem;
    }

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

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

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

    .about-story {
        flex-direction: row;
        align-items: center;
    }

    .story-content {
        flex: 1;
    }

    .story-image {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 1rem);
    }

    .team-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .approach-section {
        flex-direction: row;
        align-items: center;
    }

    .approach-block {
        flex: 1;
    }

    .approach-image {
        flex: 1;
    }

    .contact-main {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-image {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .hero-text-block h1 {
        font-size: 4rem;
    }

    .section-header-offset h2 {
        font-size: 2.8rem;
    }

    .step-block.offset {
        margin-top: -4rem;
    }
}