* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

html {
    scroll-behavior: smooth; 
}


body {
    background-color: #f9f9f9;
}

h1 {
    margin: 0;
    font-size: 36px;
    color: #004b87;
}

h2 {
    color: #004b87;
    font-size: 28px;
    margin-bottom: 20px;
}

h3 {
    font-size: 19px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

nav {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 20px;
    background-color: #f9f9f9; 
    border-bottom: 1px #c9c8c8 solid;
}

nav a {
    margin-right: 20px;
    text-decoration: none; 
    color: #242323; 
    font-family: 'Montserrat',sans-serif;
    font-weight: 600;
}

nav a:hover{
    color: #0060af;
}

nav img {
    height: 50px; 
}

a{
    color: #0060af;
}

a:hover{
    text-decoration: none;
    color: #0060af;
}

.background {
    position: relative;
    width: 100%;
    height: 40dvh;
    margin: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.overlay-content {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    color: white;
}

.text-button {
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.description {
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
    color: azure;
}

.content-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    gap: 100px;
}

.text h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.text p {
    font-size: 18px;
    color: #333;
    text-align: justify;
}

.video-container{
    max-width: 100%;
    height: 95%;
    display: block;
}

.info{
    text-align: center;
    border-top: 1px solid #c9c8c8;
}


/* FAB */
.whatsapp{
    position: fixed;
    bottom: 150px;
    right: 35px;
    outline: none;
    border: none;
    height: 70px;
    width: 70px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.whatsapp a{
    color: #63E6BE;
    font-weight: bolder;
}

.telegram{
    position: fixed;
    bottom: 100px;
    right: 35px;
    outline: none;
    border: none;
    height: 70px;
    width: 70px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.telegram a{
    color: #003058;
    font-weight: bolder;
}

.linkedin{
    position: fixed;
    bottom: 50px;
    right: 35px;
    outline: none;
    border: none;
    height: 70px;
    width: 70px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.linkedin a{
    color: #003058;
    font-weight: bolder;
}

.floating-alert {
    position: fixed;
    bottom: 230px;
    right: 35px;
    background-color: #003058;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.floating-alert.show {
    opacity: 1; 
    visibility: visible;
}

.floating-alert p {
    margin: 0;
    font-weight: bold;
}

footer{
    background-color: #003058;
    color: white;
    text-align: center;
    padding: 1.25em;
    padding-bottom: 2em;
    max-height: 3rem;
    margin: 0;
    display: block;
}
  
footer p{
    color:white;
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    font-size: 1.25em;
}

footer a{
    color: white;
    text-decoration: none;
}

footer a:hover{
    text-decoration: underline;
}


/* .procedure h1{
    text-align: center;
}

.procedure .images-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px; 
}

.procedure .vs {
    text-align: center;
}

.procedure img {
    width: 400px; 
    height: 500px; 
}

.procedure video {
    width: 400px;
    height: 300px; 
}

.procedure .videos-section {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0 40px;
}

.videos-section h2{
    text-align: center;
    display: block;
}

.procedure figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
} */



ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.screenshot-container img {
    /* max-width: 800px; */
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}

.steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.step {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.step h3 {
    color: #004b87;
}

.container {
    width: 80%;
    margin: auto;
    padding-top: 20px;
}

.content {
    margin-top: 20px;
}



@media (max-width: 768px) {
    .background {
        height: 25dvh;;
    }

    h1{
        text-align: center;
    }

    h2 {
        text-align: center;
    }

    #finalize{
        font-size: 25px;
    }

    .steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px; 
    }

    .text h1 {
        font-size: 28px; 
    }

    .text p {
        font-size: 16px; 
    }

    .video-container video {
        max-width: 100%;
        height: auto; 
    }

    .screenshot-container {
        max-width: 100%;
    }
    
    .info{
        padding: 0 5px 0 5px;
    }

}

@media screen and (max-width:320px) {
    footer p{
        font-size: 0.5em;
    }

    .description {
        font-size: 25px;
    }

}

@media screen and (max-width:375px) {
    footer p{
        font-size: 1em;
    }
}