.landing {
    background-color: black;
    background-size: cover;
    background-position: center;
    /* min-height: 700px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 0 0 0;
    color: var(--color-text-light);
}

@media (max-width: 900px) {
    .landing {
        padding: 20px 0;
    }
}

.landing .text-center {
    margin-bottom: 40px;
}

.landing .best-of {
    /* display: inline-block; */
    padding: 0 20px;
    font-size: 4em;
    font-weight: bold;
    line-height: 1.1;
    color: var(--color-accent-blue); /* "The future of investing is here" color */
}

.landing-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* gap: 50px; */
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.landing-content.desktop {
    display: flex; /* Ensure desktop content is displayed */
}

.landing-content.mobile {
    display: none; /* Hide mobile content by default */
}

@media (max-width: 768px) {
    .landing-content.desktop {
        display: none; /* Hide desktop content on mobile */
    }
    .landing-content.mobile {
        display: flex; /* Show mobile content on mobile */
        flex-direction: column;
        align-items: center;
    }
    .landing .best-of {
        font-size: 1.5em; /* Adjust font size for mobile */
        margin-bottom: 0px;
    }
}


.half {
    flex: 1;
    padding: 50px 0 0 0;
    background-color: black; /* Background for the feature boxes */
    /* border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.left {
    background: #000;
    color: #fff;
}

.right {
    background: #fff;
    color: #000;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-box {
    background-color: var(--color-background-dark); /* Darker background for logo box */
    padding: 15px;
    border-radius: 5px;
    display: inline-block; /* To wrap content */
}

.logo-box img {
    max-width: 100%;
    height: auto;
}

.half h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.half.left h3 {
    color: white;
}

.half.right h3 {
    color: black;
}

.info-box {
    padding: 15px;
    font-size: 1.5em;
    line-height: 1.5;
}

.info-box.white {
    background-color: var(--color-text-light); /* White background for info box */
    color: var(--color-text-dark); /* Dark text for white info box */
}

.info-box.black {
    background-color: var(--color-background-dark); /* Dark background for info box */
    color: var(--color-text-light); /* Light text for dark info box */
}

.center-arrow {
    font-size: 10em;
    color: var(--color-accent-blue);;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .center-arrow {
        font-size: 4em;
    }
}

.cta-bar {
    /* margin-top: 50px; */
    padding: 20px;
    background-color: grey;
    text-align: center;
    /* border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.cta-btn {
    background-color: var(--color-accent-blue);
    color: var(--color-text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

@media (max-width: 900px) {
    .cta-btn {
        font-size: 1em;
    }
}

.cta-btn:hover {
    background-color: #158cb1;; /* Slightly darker blue on hover */
}
