body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    /* Prevent scrollbar from svgs */
}

.company-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    /* Background image is set inline in the template */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* SVG Overlays */
.overlay-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.overlay-left {
    left: 0;
    width: 80%;
    /* Adjust width as needed */
    height: 100%;
    fill: rgba(255, 255, 255, 0.76);
}

.overlay-right {
    right: 0;
    top: auto;
    bottom: 0;
    width: 20%;
    height: 40%;
    fill: rgba(255, 255, 255, 0.4);
    transform: translateX(50%);
    /* More transparent on right */
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 50px;
}

.company-logo {
    max-height: 80px;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #052C65;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-title span {
    color: #333;
}

.description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-action {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
    border: none;
    color: white;
    margin-right: 15px;
    margin-bottom: 10px;
}

.footer-strip {
    background-color: white;
    padding: 10px 0 10px 10px;
    font-size: 0.85rem;
    color: #666;
    position: absolute;
    bottom: 15px;
    width: 98%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-strip a {
    color: #666;
}

/* Top Overlay (Mobile Only) */
.overlay-top {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
}

.overlay-top-1 {
    height: calc(100% - 170px);
    opacity: 0.6;
    z-index: 1;
}

.overlay-top-2 {
    height: calc(100% - 150px);
    opacity: 0.4;
    z-index: 0;
}

.overlay-top-3 {
    height: calc(100% - 130px);
    opacity: 0.3;
    z-index: -1;
}

/* Mobile adjustments */
@media (max-width: 768px) {

    .overlay-left,
    .overlay-right {
        display: none;
    }

    .overlay-top {
        display: block;
        z-index: 0;
    }

    .main-title {
        font-size: 2rem;
    }

    .company-hero {
        align-items: flex-start;
    }

    .content-wrapper {
        margin-bottom: 150px;
        margin-top: 1rem;
        padding-top: 0;
        text-align: center;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .company-logo {
        margin-bottom: 0rem;
    }
}