:root {
    --background-color: #090909;
    --main-text-color: #E5E5EA;
    --secondary-text-color: #AEAEB2;
    --link-color: #007AFF;
    --cta-background: #007AFF;
    --max-content-width: 1040px;
    --side-margin: 40px;
    --card-background: #191919;
    --icon-blue: #32ADE6;
    --icon-green: #00C7BE;
    --icon-purple: #5856D6;
    --dark-hover: #0055b3;
}

a {
    transition-duration: 0.2s;
}

body {
    background-color: var(--background-color);
    color: var(--main-text-color);
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    scroll-behavior: smooth;
}

a {
    scroll-behavior: smooth;
}

.blue {
    color: var(--link-color);
}

.white {
    color: var(--main-text-color);
}

main {
    max-width: var(--max-content-width);
    margin: var(--side-margin) auto;
    padding: 0 var(--side-margin);
}

h1, h2, h3, h4, p, a {
    margin: 0;
}

h1 {
    font-size: 44px;
    line-height: 60px;
    font-weight: 700;
    padding-bottom: 10px;
    margin: 0 auto;
}

h2 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    margin: 0 auto;
}

h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

h4 {
    font-size: 15px;
    line-height: 24px;
    font-weight: 300;
}

p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

h4, p {
    color: var(--secondary-text-color);
}

a {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--dark-hover);
}

.cta-main, .cta-secondary {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
}

.cta-main {
    background-color: var(--cta-background);
    color: var(--main-text-color);
    border: 0px;
}

.cta-main:hover {
    background-color: var(--dark-hover);
    color: var(--main-text-color);
}

.cta-secondary:hover {
    background-color: var(--dark-hover);
    border-color: var(--dark-hover);
    color: var(--main-text-color);
}

.logo {
    padding-top: 0px;
    height: 44px;
    width: auto;
}

.retina-image {
    width: 380px;
    height: auto;
    margin-top: 40px;
    margin-bottom: 20px;
}

.cta-secondary {
    border: 1px solid var(--cta-background);
    color: var(--cta-background);
    background-color: transparent;
}

.card-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.card {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    box-sizing: border-box;
    flex: 1 1 calc(33.3% - 40px);
}

.card h3 {
    margin-bottom: 5px;
}

.card p {
    margin-top: 30px;
    margin-bottom: 0;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.icon-blue {
    background-color: var(--icon-blue);
}

.icon-green {
    background-color: var(--icon-green);
}

.icon-purple {
    background-color: var(--icon-purple);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.header-section {
    margin-top: 40px;
    text-align: center;
}

.header-section h2 {
    width: 80%;
}

.header-section .cta-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.split-left,
.split-right {
    flex: 1 1 calc(49.99% - 20px);
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-right {
    text-align: left;
    color: var(--main-text-color);
}

.split-right h2 {
    width: 100%;
    margin: 0px;
    margin-right: var(--side-margin);
}

.split-right p, .input-left p {
    padding-top: 10px;
}

.split-right p {
    padding-bottom: 20px;
}

.input-left p {
    padding-bottom: 10px;
}

.email-confirmation {
    padding: 16px;
    border: var(--icon-green) 1px solid;
    border-radius: 8px;
    margin-top: 20px;
    color: var(--main-text-color);
}

.split-image {
    width: 200px;
    height: 200px;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.icon-container {
    display: flex;
    align-items: center;
}

.icon-container img {
    height: 16px;
    width: auto;
}

.transport-logos {
    height: 40px;
    width: auto;
}

.text-section {
    margin: 60px 0;
    padding-left: var(--side-margin);
    padding-right: var(--side-margin);
}

.text-section h3 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
}

.full-width-section {
    width: 100%;
    background-color: var(--card-background);
    padding-top: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
    border-radius: 20px;
    margin-bottom: var(--side-margin);
}

.content-wrapper {
    max-width: var(--max-content-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
    box-sizing: border-box;
}

.column {
    flex: 1;
    padding-left: var(--side-margin);
    padding-right: var(--side-margin);
    box-sizing: border-box;
}

.column h2 {
    margin-bottom: 15px;
}

.column p {
    margin-top: 20px;
}

.image-container img {
    margin-top: 5px;
    margin-bottom: 0px;
    height: 30px;
    width: auto;
}

.cright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

.input-section {
    display: flex;
    padding: 0px 0px 0px 0px;
    background-color: var(--card-background);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    border-radius: 20px;
    margin-top: 40px;
}

.input-left {
    align-items: flex-start;
    flex: 1 1 49.5%;
    height: auto;
    overflow: auto;
    padding: var(--side-margin);
    z-index: 1;
    box-sizing: border-box;
}

.input-left input {
    height: 50px;
    padding-left: 18px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px var(--background-color) solid;
    background-color: var(--main-text-color);
    margin-top: 10px;
    margin-right: 10px;
}

.input-right {
    flex: 1 1 49.5%;
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url(../images/mobipoint-background-pricelist.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 300px
}

.extrabutton {
    margin-top: 20px;
}

.email-confirmation {
    align-items: flex-start; 
    display: none;
}

.email-confirmation .icon-container {
    padding-top: 5px;
}

@media (max-width: 767px) {
    :root {
        --side-margin: 20px;
    }

    h1 {
        font-size: 28px;
        line-height: 38px;
        max-width: 100%;
    }

    h2 {
        font-size: 18px;
        line-height: 26px;
        font-weight: 400;
        max-width: 100%;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
    }

    h4, p {
        font-size: 16px;
        line-height: 24px;
    }

    .header-section {
        margin-top: 20px;
    }

    .logo {
        height: 36px;
        margin-bottom: 20px;
        clear: both;
    }

    .retina-image {
        width: 240px;
        margin: 20px auto;
        clear: both;
    }

    .header-section .cta-container {
        display: flex;
        /* Keep buttons side-by-side */
        flex-wrap: wrap;
        /* Allow wrapping on small screens */
        justify-content: center;
        gap: 16px;
        margin: 20px 0;
    }

    .card-section {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        padding: 0;
    }

    .card {
        flex: 1 1 100%;
        padding: var(--side-margin);
    }

    .card-icon {
        width: 52px;
        height: 52px;
    }

    .card p {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .cta-main, .cta-secondary {
        padding: 8px 24px;
    }

    .split-section {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        flex: 1 1 100%;
        text-align: center;
        padding: 20px;
    }

    .split-right {
        text-align: left;
    }

    .input-section {
        border-radius: 12px;
        overflow: auto;
        padding-left: 0px;
    }

    .input-left {
        align-items: flex-start; 
        width: 100%;
        height: auto;
        flex: 1 1 100%;
        position: relative;
        overflow: auto;
        padding-left: var(--side-margin);
        padding-right: var(--side-margin);
        padding-bottom: 30px;
    }

    .input-right {
        width: 100%;
        height: 200px;
        position: relative;
        overflow: hidden;
        padding-right: var(--side-margin);
    }

    .split-section {
        gap: 0px;
    }

    .split-image {
        width: 160px;
        height: 160px;
    }

    .input-wrapper {
        width: 100%;
    }

    .full-width-section {
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 12px;
    }

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

    .column {
        flex: 1 1 100%;
    }

    .cright {
        margin-top: 30px;
    }

}