body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* fallback color if the pattern doesn't load */
    background-image: url('pattern.jpg'); /* URL to your patterned repeating background */
    background-size: 100px; /* Adjust the size of the pattern as needed */
font-family: Helvetica;
}

.container {
    max-width: 1545px; /* Set the maximum width of the content */
    margin: 0 auto;
    padding: 0 20px; /* Adjust the padding as needed */
    text-align: center;
}

.content {
    max-width: 80%; /* Ensures image won't exceed its original size */
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content {
        max-width: 100%;
    }
}

.cta {
font-size: 2.2vw;
text-align: center;
padding: 5px;
display: block;
}
a{
text-decoration: none;
color: #004a5d;
}

.blue-button {
    padding: 1vw 2.5vw;
    background-color: #096cb7; /* Blue color */
    color: #ffffff; /* White text */
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    position: relative; /* For the arrow positioning */
    font-size: 0.8em;
    display: inline-block;
    }

/* Bevel effect (inner shadow) */
.blue-button::before {
content: '';
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border-radius: 2px;
pointer-events: none;
}

/* Arrow icon styling */
.blue-button i {
margin-left: 8px; /* Space between text and arrow */
}

/* Hover state */
.blue-button:hover {
background-color: #004a5d; /* Darker blue on hover */
border-color: #001e27; /* Darker border on hover */
color: #ffffff; /* White text on hover */
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .mobile {
        display: block;
        max-width: 100%;
        margin: 0;
        padding: 0;
        font-size: 5.2vw !important; /*another hack*/
        /* margin-top: 20px; */
    }
    .desktop { 
        display: none;
    }
    .cta {
        font-size: 5.2vw;
        text-align: center;
        padding: 5px;
        display: block;
        }
        body{
            background: white !important;
        }
        .get-started-bttn { 
            display: block;
        }


}
