@media screen and (max-width: 991px) { 
    h1{
        font-size: 2.7rem;
    }
    
    h2{
        font-size: 1.9rem;
    }
    
    h3{
        font-size: 1.4rem;
    }
    
    p {
        font-size: 0.9rem;
        font-family: 'Roboto',sans-serif;
        color: var(--secondary-text-color);
        line-height: 1.6rem;
    }
    
    .nav-toggle{
        display: block;
        margin-right: 20px;
    }

    .main-nav{
        overflow: initial;
    }

    .title{
        display: block;
    }

    .nav-links {
        position: absolute;
        background-color: black;
        left: -120%;
        top: 100%;
        width: 100%;
        padding-block: 20px;
        transition: 0.3s ease-out;

    }

    .nav-links.active{
        left: 0;
        border-radius: 10px;
        margin-top: 5px;
        transition: 0.3s ease-out;
    }

    .nav-links ul{
        flex-direction: column;
    }

    .example-area{
        gap: 20px;
    }

    .example-card{
        width: calc(50% - 10px);
    }

}

@media screen and (max-width: 768px) {
    h1{
        font-size: 1.8rem;
    }
    h2{
        font-size: 1.4rem;
    }
    
    h3{
        font-size: 0.8rem;
    }

    h4{
        font-size: 0.6rem;
    }
    
    p {
        font-size: 0.6rem;
        font-family: 'Roboto',sans-serif;
        color: var(--secondary-text-color);
        line-height: 0.8rem;
    }

    a {
        font-size: 0.6rem;
    }

    .nav-links a{
        font-size: 0.9rem;
    }

    .nav-links ul {
        gap: 20px;
    }

    .feature-desc {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0px;
    }

    .primary-button {
        padding: 8px 15px;
    }

    .secondary-button{
        padding: 8px 15px;
    }


    .big-feature-container{
        gap: 30px;
        justify-content: space-around;
    }

    .cta-section-container iframe{
        width: 50%;
        height: 200px;
        border-radius: 20px;
    }

    .cta-section{
        padding: 30px var(--padding-inline-section) 30px;
        background-color: #183b54;
    }

    .features-card{
        min-width: calc(50% - 20px);
    }

}

@media screen and (max-width: 480px) {
    .primary-button {
        width: 100%;
    }
    .secondary-button{
        width: 100%;
        text-align: center;
    }
    .header-section{
        flex-direction: column-reverse;
    }
 
    .header-left{
        max-width: 100vw;
    }

    .big-feature-container , #second-big-feature , .about-container , #second-about{
        flex-direction: column;
    }

    .example-card{
        height: 200px;
    }

    .cta-section-container{
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .feature-desc{
        align-items: center;
    }

    .double-button{
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cta-section-container iframe{
        width: 60%;
        height: 150px;
        border-radius: 10px;
    }

    .about-container{
        gap: 20px;
    }
    
}

@media screen and (max-width: 380px) {

    .banner-text{
        font-size: 0.7rem;
    }

    :root{
        --padding-inline-section: 10px;
    }

    h3{
        font-size: 0.7rem;
        font-style: normal;
        font-weight: 600;
    }

    h1{
        font-size: 1.3rem;
    }
    h2{
        font-size: 1rem;
    }

    h4{
        font-size: 0.5rem;
    }
    
    p {
        font-size: 0.6rem;
        font-family: 'Roboto',sans-serif;
        color: var(--secondary-text-color);
        line-height: 0.8rem;
    }

    a {
        font-size: 0.6rem;
    }

    .primary-button {
        padding: 4px 10px;
    }

    .secondary-button{
        width: 100%;
        padding: 4px 10px;
        text-align: center;
    }
  
    .feature-desc{
        justify-content: center;
        align-items: center;
    }

    .double-button{
        flex-direction: column;
        gap: 10px;
    }

   
    .cta-section-container iframe{
        width: 100%;
        height: 150px;
        border-radius: 10px;
    }


    .example-card{
        height: 110px;
    }
    footer{
        padding-block: 20px;
    }
    .footer-container{
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
    .link-column{
        align-items: stretch;
        gap: 5px;
    }
    .example-area{
        margin-block: 20px;
        gap: 10px;
        justify-content: space-evenly;
    }
}