body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    font-family: azo-sans-web,Arial;
    letter-spacing: normal;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    text-align: center;
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    padding: 0 3.25rem;
    margin-bottom: 3rem;
}

h1 {
    color: #333;
    font-size: 3rem;
    line-height: 1.5em;
}

/* Style for the navigation bar */
.navbar {
    width:100%;
    height:100px;
    background-color: #592D5E;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4.5rem;
}

.navbar .logo{
    height: 1.75rem;
    margin: 0 0.5rem 0 0;
    fill: #fff;
}

.navbar .logo a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}
.logo-container{
    margin: 0;
    width: 100%;
    max-width:1400px;
    display: flex;
    padding: 1rem 3.25rem;
}

.hero-text{
    position: relative;
}

.hero-text::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 170%);
    bottom: 55px; /* Adjust the distance of the underline from the text */
    width: 47%;
    height: 24px; /* Adjust the thickness of the underline */
    background-color: #CCE5EC; /* Adjust the color of the underline */
    z-index: -1;
}

p {
    color: #333;
    font-size: 1rem;
}

/* Reset default styles for list */
ul {
list-style: none;
padding: 0;
margin: 0;
}

/* Create horizontal layout for list items */
ul.horizontal-list {
    display: flex;
}

ul.horizontal-list li {
    margin-right: 20px; /* Adjust spacing between items */
}

/* Style for links */
ul.horizontal-list li a {
    text-decoration: underline;
    color: #007D9E;
    padding: 24px;
}

ul.horizontal-list li a img{
    width:20px;
    margin-right: 8px;
}

/* Style for the CTA container */
.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style for the CTA button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    background-color: #007D9E;
    color: #ffffff;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the CTA button */
.cta-button:hover {
    background-color: #0883a2;
    border-color: #005166;
}

.try-text{
    max-width: 700px;
}

.cis{
    position: relative;
    width: 100%;
    height: inherit;
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.cis img{
    width: 100%;
    max-width: 980px;
    border-radius: 16px 16px 0px 0px;
}

@media only screen and (max-width: 1024px) {
    .hero-text::after{
        width:45%;
        height:18px;
        transform: translate(-50%, 150%);
    }
    .container {
        max-width: 1400px;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    .logo-container{
        margin:0;
    }
    
    ul.horizontal-list{
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 8px;
    }

    ul.horizontal-list li a{
        padding: 0;
    }

    h1{
        font-size: 2rem;
    }

    .cis{
         padding: 0;
         margin: 0;
    }

    .cis img{
        width:95%;
    }
}

@media only screen and (max-width: 700px) {
    .hero-text::after{
       display:none;
    }
    ul.horizontal-list{
        grid-template-columns: auto;
    }
}

@media only screen and (max-width: 320px) {
    h1{
        font-size: 1.5rem;
    }
}