body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}
.hero {
    position: relative;
    color: white;
    text-align: center;
    opacity: 0;
    animation: fadeInFromBottom 0.8s ease-out forwards;
}
.hero img {
    display: block;
    background: linear-gradient(rgb(28 31 74 / 50%), rgba(0, 0, 0, 0.9));
}
.image-text {
    position: absolute;
    top: 20%; 
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Maven Pro';
    width: 90%;
}
.image-text h1 {
    font-size: 34px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInFromBottom 1s ease-out forwards;
    animation-delay: 0.3s;
}
.image-text p {
    font-size: 18px;
    opacity: 0;
    animation: fadeInFromBottom 1s ease-out forwards;
    animation-delay: 0.5s;
}
.container {
    display: flex;
    justify-content: space-between;
    max-width: 1420px !important;
    max-height: 500px;
    margin: auto;
    margin-bottom: 0;
    padding: 20px;
    opacity: 0;
    animation: fadeInFromBottoms 1.2s ease-out forwards;
    animation-delay: 0.6s;
}
.content {
    width: 55%;
    background: white;
}
.free-trial-container {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}
.form-card {
    background-color: #fff; 
    color: #053763; 
    padding: 25px; 
    border-radius: 8px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    border: 1px solid #D7D7D7;
    width: 100%; 
    height: 72%;
    margin: 0px 0px 250px;
}
#checkbox {
    cursor: pointer;
    box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.16);
}
.permission {
    margin: 0;
    color: #666; 
    font-size: 14px; 
}
.text-banner {
    color: #053763; 
    font-size: 20px;
    font-weight: 400; 
    text-align: center;
    margin-bottom: 1.5em;
}
.circle-1 {
    gap: 1em;
    width: 30em;
    height: 9em;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #e8e8e8;
    color: #053763;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.estimation-button {
    text-decoration: none;
    color: #fff;
    background-color: #053763;
    width: 12em;
    height: 3em;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.estimation-button:hover {
    color: #fff;
    text-decoration: none;
    background-color: #053763b0;
}
@keyframes fadeInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInFromBottoms {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .image-text {
        top: 35%;
        width: 95%;
        padding: 8px;
    }
    .image-text h1 {
        font-size: 20px;
    }
    .image-text p {
        font-size: 16px;
    }
    .container {
        flex-direction: column;
        align-items: center;
        text-align: flex-start;
        max-height: 1200px !important;
        padding: 15px;
    }
    .content, .free-trial-container {
        width: 100%;
        max-width: 100%;
    }
    .free-trial-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .form-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
        margin-bottom: 20px;
    }
    .text-banner {
        font-size: 18px;
        margin-bottom: 1rem;
    }
    .estimation-button {
        width: 100%;
        max-width: 200px;
    }
    .navy-blue-bg {
        height: 31em !important;
    }
    .steps {
        flex-direction: column;
        gap: 1rem;
    }
    .text-banner {
        font-size: 1.2rem;
    }
    .circle-1 {
        width: 100%;
        padding: 15px;
    }
    .permission {
        font-size: 11px;
    }
}