    body {
        background: var(--white-grey);
        margin: 0;
        overflow-x: hidden;
        scrollbar-width: thick;
        scrollbar-color: var(--blue) var(--white-grey);
    }

    :root {
        /* Colors */
        --white: #ffffff;
        --black: #000000;
        --light-black: #1b1b1b;
        --grey: #3d3d3d;
        --light-grey: #5f5f5f;
        --light-light-grey: rgb(197, 197, 197);
        --blue: #2563EB;
        --light-blue: #5f92ff;
        --turquoise: #22D3EE;
        --dark-blue: #1E40AF;
        --light-light-blue: rgba(59, 130, 246, 0.15);
        --white-grey: #F8FAFC;

        /* Headings */
        --font-size-xxl: 56px;
        --font-size-xl: 52px;   /* Hero Title */
        --font-size-sxl: 44px;
        --font-size-lg: 34px;   /* Section Titles */
        --font-size-md: 26px;   /* Card Titles */
        --font-size-s-md: 22px;
        --font-size-sm: 20px;   /* Small headings */
        --font-size-xs: 17px;   /* X-Small headings */
        --font-size-xxs: 15px;

        /* Text */
        --font-size-base: 16px; /* normal text */
        --font-size-small: 14px; /* small text */

        /* Buttons */
        --font-size-button: 16px;

        /* Border */
        --border: #b1b1b1;

        /* Box Shadow */
        --box-shadow: 0 30px 30px rgba(59, 130, 246, 0.15);
        --box-shadow-hover: 0 33px 60px rgba(0, 98, 255, 0.25);
    }

    em {
        font-style: italic;
    }
    
    .hero {
        width: 100%;
        position: relative;
        border-bottom: var(--light-light-grey) 2px solid;
    }

    .hero img {
        width: 100vw;
        display: block;
    }

    .computer-with-website-description {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        width: 450px;
        
        color: #0F172A;
    }
    
    .computer-with-website-description h1 {
        font-size: clamp(44px, 2.708vw, 52px);
        width: 500px;
    }

    .computer-with-website-description p {
        font-size: var(--font-size-sm);
        color: var(--grey-color);
    }

    .computer-with-website-description span {
        font-size: var(--font-size-xs);
        color: var(--light-black);
    }

    .computer-with-setup-description {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        width: 400px;
        
        color: #0F172A;
    }
    
    .computer-with-setup-description h1 {
        font-size: var(--font-size-xxl);
    }

    .computer-with-setup-description p {
        font-size: var(--font-size-sm);
        color: var(--grey-color);
    }

    .computer-with-setup-description span {
        font-size: var(--font-size-xs);
        color: var(--light-black);
    }

    .computer-with-email-description {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-110%);
        width: 350px;
        
        color: #0F172A;
    }
    
    .computer-with-email-description h1 {
        font-size: var(--font-size-xxl);
    }

    .computer-with-email-description p {
        font-size: var(--font-size-sm);
        color: var(--grey-color);
    }

    .computer-with-email-description span {
        font-size: var(--font-size-xs);
        color: var(--light-black);
    }

    .quote-button {
        background: var(--blue);
        border: none;
        width: 180px;
        height: 45px;
        font-size: var(--font-size-xs);
        border-radius: 8px;
        color: var(--white);
        margin-top: 20px;
        transition: 0.25s ease all;
    }

    .quote-button:hover {
        cursor: pointer;
        box-shadow: 2px 4px 10px rgba(59, 130, 246, 0.35)
    }

    .portfolio-button {
        background: var(--white);
        border: var(--border) 2px solid;
        width: 180px;
        height: 45px;
        font-size: var(--font-size-xs);
        border-radius: 8px;
        color: var(--black);
        margin-top: 20px;
        margin-left: 20px;
        transition: 0.25s ease all;
    }

    .portfolio-button:hover {
        cursor: pointer;
        background: transparent;
        color: var(--blue);
        border: var(--blue) 2px solid;
    }

    nav {
        display: flex;
        align-items: center;
        height: 100px;
        width: 100%;
        position: sticky;
        top: 0;
        margin-top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 0 40px;
    }

    .links a {
        text-decoration: none;
        font-size: var(--font-size-sm);
        color: var(--grey);
        display: flex; 
        align-items: center;
        transition: 0.25s ease all;
    }

    .links a:hover {
        color: var(--blue);
    }

    .quote-button-2 {
        background: var(--blue);
        border: none;
        width: 180px;
        height: 40px;
        font-size: var(--font-size-xs);
        border-radius: 8px;
        color: var(--white);
        transition: 0.25s ease all;
    }

    .quote-button-2:hover {
        cursor: pointer;
        box-shadow: 1px 2px 10px rgba(59, 130, 246, 0.35)
    }

    .img img {
        width: 150px;
        height: auto;
        margin-bottom: -18px;
    }

    .links {
        display: flex;
        gap: 25px;
        margin-left: auto;
        margin-right: 100px;
    }

    .services {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        margin-top: 100px;
    }

    .services h2 {
        font-size: var(--font-size-xl);
    }

    .services p {
        font-size: var(--font-size-sm);
        color: var(--grey);
        margin-top: -10px;
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        margin-top: 50px;
        align-items: center;
        justify-content: center;
    }

    .service-card img {
        width: 150px;
        height: auto;
        align-items: center;
        justify-content: center;
    }

    .service-card span {
        font-size: var(--font-size-sm);
        color: var(--light-grey);
        width: 70%;
        text-align: center;
    }

    .service-card h2 {
        font-size: var(--font-size-md);
        color: var(--black);
    }

    .service-card {
        width: 350px;
        height: 350px;
        box-shadow: 0 30px 30px rgba(59, 130, 246, 0.15);
        border-radius: 20px;
        justify-content: center;
        display: flex;
        align-items: center; 
        flex-direction: column;
        padding: 10px;
        transition: 0.3s ease all;
    }

    .service-card:hover {
        transform: translateY(-5px) scale(1.02) translateZ(0);
        box-shadow: 0 33px 60px rgba(0, 98, 255, 0.18);
    }

    .speaker-span {
        width: 100%;
    }

    .why-work-with-us {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        margin-top: 100px;
    }

    .why-work-with-us h2 {
        font-size: var(--font-size-xl);
    }

    .why-work-with-us p {
        font-size: var(--font-size-sm);
        color: var(--grey);
        margin-top: -10px;
    }

    .why-work-with-us-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
        margin-top: 50px;
    }

    .work-card {
        width: 250px;
        height: 350px;
        box-shadow: 0 30px 30px rgba(59, 130, 246, 0.15);
        border-radius: 20px;
        justify-content: center;
        display: flex;
        align-items: center; 
        flex-direction: column;
        padding: 10px;
        transition: 0.3s ease all;
    }

    .work-card:hover {
        transform: translateY(-5px) scale(1.018);
        box-shadow: 0 33px 60px rgba(0, 98, 255, 0.18);
    }

    .work-card img {
        width: 150px;
        height: auto;
        align-items: center;
        justify-content: center;
    }

    .work-card span {
        font-size: var(--font-size-xs);
        color: var(--light-grey);
        width: 80%;
        text-align: center;
    }

    .work-card h2 {
        font-size: var(--font-size-sm);
        color: var(--black);
    }

    .ready-to-start-your-project {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        height: 600px;
    }

    .ready-card {
        width: 1185px;
        height: 300px;
        background: var(--light-light-blue, 0.1);
        border-radius: 20px;
        align-items: center;
        display: flex;
        justify-content: center;
        gap: 45px;
    }

    .ready-img img {
        width: 180px;
        height: auto;
    }

    .ready-description h2 {
        font-size: var(--font-size-sxl) 
    }

    .ready-description p {
        font-size: var(--font-size-xs);
    }

    .ready-button button {
        background: var(--blue);
        border: none;
        width: 200px;
        height: 50px;
        font-size: var(--font-size-xs);
        border-radius: 8px;
        color: var(--white);
        transition: 0.25s ease all;
    }

    .ready-button button:hover {
        cursor: pointer;
        box-shadow: 1px 2px 10px rgba(59, 130, 246, 0.35)
    }

    .why-we-started-sitelify-card span {
        font-size: var(--font-size-xs);
        color: var(--light-grey);
        width: 95%;
        text-align: start;
    }

    .why-we-started-sitelify-card h2 {
        font-size: var(--font-size-lg);
        color: var(--black);
        width: 95%;
        text-align: start;
    }

    .why-we-started-sitelify-card {
        width: 850px;
        height: 210px;
        box-shadow: 0 30px 30px rgba(59, 130, 246, 0.15);
        border-radius: 20px;
        justify-content: center;
        display: flex;
        align-items: center; 
        flex-direction: column;
        padding: 10px;
    }

    .why-we-started-sitelify {
        height: 250px;
        margin-top: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .what-we-focus-on {
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .what-we-focus-on > h2 {
        font-size: var(--font-size-xl);
        margin-bottom: 40px;
    }

    .what-we-focus-on-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .what-we-focus-on-card {
        background: var(--white-grey);
        height: 220px;
        width: 400px;
        box-shadow: 0 30px 30px rgba(59, 130, 246, 0.15);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: start;
        padding: 10px;
        box-sizing: border-box;
        transition: 0.3s ease all;
    }

    .what-we-focus-on-card:hover {
        transform: translateY(-5px) scale(1.018);
        box-shadow: 0 33px 60px rgba(0, 98, 255, 0.18);
    }

    .img-and-text {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .img-and-text img {
        width: 70px;
        height: auto;
        margin: 0;
    }

    .img-and-text h2 {
        font-size: var(--font-size-md);
        margin: 0;
    }

    .what-we-focus-on-card span {
        color: var(--grey);
        width: 70%;
        display: block;
    }

    footer {
        width: 100%;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-top: 30px;
    }

    .main-links {
        margin-top: 0;
        width: 230px;
        align-items: start;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
    }

    .main-links h2 {
        font-size: var(--font-size-sm)
    }

    .cards-flex {
        display: flex;
    }

    .little-background {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .little-background img {
        width: 100%;
        height: auto;
        display: block;
    }

    .what-you-can-expect {
        position: absolute;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -70%);
    }

    .tick-descriptions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .what-you-can-expect h2 {
        font-size: var(--font-size-xl);
    }

    .tick-descriptions h2 {
        font-size: var(--font-size-sm);
        color: var(--grey);
        display: flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap; /* 🔥 DAS IST DER KEY */
    }

    .tick-descriptions img {
        width: 30px;
    }

    .lets-build-something-great {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 350px;
    }

    .lets-build-something-great h2 {
        font-size: var(--font-size-lg);
    }

    .lets-build-something-great span {
        color: var(--grey);
        font-size: var(--font-size-xs);
        margin-bottom: 15px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 400px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px;
        border-radius: 8px;
        border: 1px solid var(--light-light-grey);
        font-size: var(--font-size-sm);
        outline: none;
    }

    .contact-form textarea {
        resize: none;
        height: 120px;
    }

    .contact-form button {
        background: var(--blue);
        color: var(--white);
        border: none;
        padding: 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.2s;
    }

    .contact-form button:hover {
        background: var(--dark-blue);
    }

    .email {
        width: 100%;
        height: 330px;
        justify-content: center;
        display: flex;
        align-items: center; 
        padding: 10px;
        margin-top: -350px;
        transform: translateY(-150px);
    }

    .email-white-card {
        background: var(--white);
        width: 600px;
        height: 260px;
        border-radius: 20px;
        box-shadow: 0 30px 30px rgba(59, 130, 246, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .email-white-card h2 {
        font-size: var(--font-size-lg);
        margin-top: -8px;
    }

    .email-white-card span {
        font-size: var(--font-size-xs);
        margin-top: -30px;
    }

    .email-white-card .a-no-button {
        font-size: var(--font-size-md);
        text-decoration: none;
        color: var(--blue);
        transition: 0.3s ease all;
    }

    .email-white-card .a-button {
        background: var(--blue);
        height: 45px;
        width: 130px;
        color: var(--white);
        border: none;
        border-radius: 8px;
        font-size: var(--font-size-xs);
        transition: 0.3s ease all;
    }

    .email-white-card .a-button:hover {
        cursor: pointer;
        box-shadow: var(--box-shadow);
    }

    .email-white-card .a-no-button:hover {
        color: var(--light-blue);
    }

    .contact-information {
        width: 100%;
        min-height: 500px;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .contact-information .contact-title {
        margin-bottom: 50px;
        font-size: var(--font-size-xl)
    }

    .contact-grid {
        display: grid; 
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .contact-card {
        background: var(--white-grey);
        height: 240px;
        width: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        box-shadow: var(--box-shadow);
        border-radius: 20px;
    }

    .contact-card img {
        width: 60px;
    }

    .contact-card h2 {
        font-size: var(--font-size-md);
    }

    .contact-card span {
        color: var(--grey);
        font-size: var(--font-size-xxs);
    }

    .contact-card .email-image {
        width:  80px;
    }

    .main-links img {
        width: 100px;
    }

    .sitelify-description img {
        width: 130px;
    }

    .sitelify-description p {
        color: var(--grey)
    }

    .sitelify-description {
        width: 230px;
        top: 0px;
        margin-top: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: justify;
    }

    .main-links a {
        font-size: var(--font-size-xxs);
        color: var(--grey);
        text-decoration: none;
        transition: 0.25s ease all;
    }

    .main-links a:hover {
        color: var(--blue);
    }

    .socials {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        width: 230px;
        margin-top: 0;
    }

    .socials h2 {
        font-size: var(--font-size-sm);
    }

    .socials a {
        text-decoration: none;
        color: var(--grey);
    }

    .main-description {
        display: flex;
        justify-content: space-between; /* 🔥 verteilt Columns */
        align-items: flex-start;        /* 🔥 STARTET OBEN */
        
        margin-top: 0;

        padding-top: 0px; /* optional Abstand von Nav */
        gap: 70px;
    }

    .main-description img {
        width: 150px;
    }

    .main-description h2 {
        font-size: var(--font-size-md);
        color: var(--black);
    }

    .main-description p {
        font-size: var(--font-size-xxs);
        color: var(--grey);
        width: 200px;
        text-align: justify;
        gap: 10px;
    }

    .social-bg {
        background: var(--grey);
        height: 40px;
        width: 40px;
        border-radius: 30%;
        border: var(--light-grey) 2px solid;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease all;
    }

    .social-bg:hover {
        background: transparent;
        border: var(--blue) 2px solid;
        color: var(--blue);
    }

    .socials-div {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .socials-div a {
        text-decoration: none;
        color: white;
        font-size: var(--font-size-sm);
    }

    .sitelify-description-column {
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: center;
        transform: translateY(14px)
    }

    .all-links-footer {
        display: flex;
        flex-direction: column;

        align-items: flex-start; /* 🔥 alles startet links */
        gap: 8px;
        min-width: 130px;
        
        margin: 0 auto; /* 🔥 ganze Box in der Mitte */
        width: fit-content; /* 🔥 wichtig */
    }

    .all-links-footer a {
        text-decoration: none;
        color: var(--grey);
        font-size: var(--font-size-xxs);
        transition: 0.25s ease all;
    }

    .all-links-footer h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -7px;
        width: 50px;
        height: 2.5px;
        background: var(--blue);
        border-radius: 10px;
    }

    .all-links-footer h2 {
        font-size: var(--font-size-sm);
        position: relative;
    }

    .all-links-footer a:hover {
        color: var(--blue);
    }

    .ready-footer-div {
        width: 100%;
        height: 300px;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .ready-footer {
        width: 1100px;
        height: 200px;
        border-radius: 20px;
        background: var(--light-light-blue, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .ready-footer img {
        width: 100px;
        height: 100px;
    }

    .ready-footer h2 {
        font-size: var(--font-size-md);
    }

    .ready-footer p {
        font-size: var(--font-size-xxs);
        color: var(--grey);
    }

    .ready-footer button {
        height: 45px;
        width: 130px;
        font-size: var(--font-size-xxs);
        background: var(--blue);
        border: none;
        border-radius: 8px;
        color: var(--white);
        transition: 0.3s ease all;
    }

    .ready-footer button:hover {
        cursor: pointer;
        box-shadow: 2px 4px 10px rgba(59, 130, 246, 0.35);
        transform: translateY(-2px); 
    }

    .footer-hr {
        background: var(--light-light-grey);
        height: 2.5px;
        width: 100%;
        border: none;
    }

    .qualities {
        height: 200px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(15px, 1.823vw, 35px);
    }

    .quality-description {
        max-width: 250px;
        width: 100%;
    }

    .quality-description h2 {
        font-size: clamp(17px, 1.146vw, 22px);
    }

    .quality-description p {
        font-size: clamp(12px, 0.885vw, 17px);
        color: var(--grey);
    }

    .fa-computer,
    .fa-mobile,
    .fa-gauge,
    .fa-shield,
    .fa-magnifying-glass
     {
        color: var(--blue);
        margin-right: 10px;
        font-size: var(--font-size-s-md);
    }

    h1 .blue {
        background: linear-gradient(45deg, var(--blue), var(--light-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: clamp(44px, 2.708vw, 52px);
    }

    .footer-end {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        padding-left: 350px;
        height: 80px;
    }

    .footer-end p {
        color: var(--grey);
    }

    .footer-end-links {
        display: flex;
        gap: 30px; /* 🔥 dein gewünschter Abstand */
        padding-right: 350px;
    }

    .footer-end a {
        text-decoration: none;
        color: var(--grey);
        transition: 0.2s;
    }

    .footer-end a:hover {
        color: var(--blue);
    }
        
    /* gesamte Scrollbar */
    ::-webkit-scrollbar {
        width: 12px;
    }

    /* Hintergrund */
    ::-webkit-scrollbar-track {
        background: var(--white-grey);
    }

    /* Scrollbar selbst */
    ::-webkit-scrollbar-thumb {
        background: var(--blue);
        border-radius: 10px;
    }

    /* Hover Effekt */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--blue);
    }

    .poppins-thin {
        font-family: "Poppins", sans-serif;
        font-weight: 100;
        font-style: normal;
    }

    .poppins-extralight {
        font-family: "Poppins", sans-serif;
        font-weight: 200;
        font-style: normal;
    }

    .poppins-light {
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-style: normal;
    }

    .poppins-regular {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .poppins-medium {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-style: normal;
    }

    .poppins-mediumbold {
        font-family: "Poppins", sans-serif;
        font-weight: 550;
        font-style: normal;
    }

    .poppins-semibold {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-style: normal;
    }

    .poppins-bold {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-style: normal;
    }

    .poppins-extrabold {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-style: normal;
    }

    .poppins-black {
        font-family: "Poppins", sans-serif;
        font-weight: 900;
        font-style: normal;
    }

    .poppins-thin-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 100;
        font-style: italic;
    }

    .poppins-extralight-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 200;
        font-style: italic;
    }

    .poppins-light-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-style: italic;
    }

    .poppins-regular-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: italic;
    }

    .poppins-medium-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-style: italic;
    }

    .poppins-semibold-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-style: italic;
    }

    .poppins-bold-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-style: italic;
    }

    .poppins-extrabold-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-style: italic;
    }

    .poppins-black-italic {
        font-family: "Poppins", sans-serif;
        font-weight: 900;
        font-style: italic;
    }

    .ready-to-start-your-project-not-available {
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fourzerofour-title {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 100px;
    }

    .fourzerofour-title img {
        width: 500px;
    }

    .fourzerofour-title-description {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        width: 400px;
        gap: 0px;
    }

    .oops-bg {
        background: var(--light-light-blue);
        color: var(--blue);
        width: 80px;
        height: 35px;
        border-radius: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .fourzerofour-title-description h1 {
        font-size: 200px;
        margin-top: -25px;
        background: linear-gradient(0deg, var(--blue), var(--dark-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .fourzerofour-title-description h2 {
        font-size: 50px;
        margin-top: -170px;
    }

    .fourzerofour-title-description p {
        position: relative;
    }

    .fourzerofour-title-description button {
        background: transparent;
        border: var(--blue) solid 2px;
        color: var(--blue);
        height: 60px;
        width: 230px;
        font-size: var(--font-size-sm);
        border-radius: 50px;
        transition: 0.3s ease all;
    }

    .fourzerofour-title-description button span {
        transform: rotate(180deg);
        transition: 0.7s ease transform;
        display: inline-block;
    }

    .fourzerofour-title-description button:hover {
        background: var(--blue);
        color: var(--white);
        cursor: pointer;
    }

    .fourzerofour-title-description button:hover span {
        transform: rotate(200deg);
    }

    .title-description-title {
        margin-bottom: -40px;
    }

    .fourzerofour-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 100px;
    }

    .back-on-track {
        background: var(--white-grey);
        box-shadow: var(--box-shadow);
        width: 850px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px;
        border-radius: 20px;
        gap: 70px;
    }

    .back-on-track img {
        width: 130px;
    }

    .back-on-track button {
        background: var(--blue);
        border: var(--blue) 2px solid;
        height: 55px;
        width: 170px;
        border-radius: 50px;
        color: var(--white);
        font-size: var(--font-size-xs);
        transition: 0.3s ease all;
    }

    .back-on-track h2 {
        font-size: var(--font-size-md);
    }

    .back-on-track p {
        font-size: var(--font-size-sm);
        color: var(--grey);
    }

    .back-on-track button:hover {
        color: var(--blue);
        background: transparent;
        cursor: pointer;
    }

    .looking-for-something {
        margin-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .looking-for-something h2 span {
        color: var(--blue);
    }

    .looking-for-something h2 {
        font-size: var(--font-size-sxl);
    }

    .looking-for-cards-flex {
        width: 100%;
        height: 350px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .looking-for-card {
        background: var(--white-grey);
        box-shadow: var(--box-shadow);
        width: 400px;
        height: 230px;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .looking-for-card img {
        width: 90px;
    }

    .looking-for-card-description {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        width: 217px;
    }

    .looking-for-card-description h2 {
        font-size: var(--font-size-lg)
    }

    .looking-for-card-description p {
        margin-top: -20px;
        font-size: var(--font-size-sm);
        color: var(--grey);
    }

    @media (max-width: 768px) {
        .ready-card {
            width: 70%;
            height: 400px;
            display: flex; 
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .ready-description {
            width: 70%;
            margin-top: -50px;
        }

        .ready-img img {
            width: 150px;
            margin-top: 50px;
        }

        .ready-description h2 {
            font-size: 20px;
        }

        .ready-description p {
            font-size: 15px;
        }

        .fourzerofour-title img {
            display: none;
        }

        .back-on-track {
            width: 80%;
            height: 485px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .fourzerofour-column-description-track {
            width: 80%;
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .fourzerofour-column-description-track p {
            margin-top: -10px;
            width: 80%;
        }

        .fourzerofour-column-description-track h2 {
            width: 80%;
            font-size: var(--font-size-md);
        }

        .looking-for-something-h2 {
            width: 270px;
            font-size: 26px;
            display: flex;
            flex-direction: column;
        }

        .looking-for-something h2 {
            font-size: 26px;
            text-align: center;
        }

        .looking-for-something-h2  {
            width: 270px;
            font-size: 26px;
            display: flex;
            flex-direction: column;
        }

        .looking-for-something {
            height: 600px;
            margin-bottom: 650px;
        }

        .looking-for-card {
            width: 280px;
            height: 300px;
            display: flex;
            flex-direction: column;
        }

        .looking-for-card-description {
            width: 70%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .looking-for-cards-flex {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
        }

        .fourzerofour-title-description {
            width: 70%;
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .title-description-title {
            width: 100%;
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .title-description-title h1 {
            font-size: 110px;
            margin-bottom: 150px;
        }

        .title-description-title h2 {
            font-size: 28px;
        }
    }