body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%;
    height: 100vh;
    max-width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    overflow-x: hidden;
}

html {
    max-width: 100%;
    width: 100%;
    margin: 0;
}
.header {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    padding: 1rem 1rem; 
    background-color: #014fb4;
    height: 100px;
    width: 100%;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom: 2px solid rgb(175, 190, 238);
}

.header img {
    width: 90px;
    height: auto;
    border-radius: 50%;
    border: 2px solid rgb(175, 190, 238);
}

.header-container {
    display: flex;
    gap: 20px;
}

button {
    border: 2px solid rgb(175, 190, 238);
    background-color: #FFF;
    color: #000000 !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.5s ease;

}

button:hover {
    transform: scale(1.1);
}
.modal {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.795); 
    justify-content: center; 
    align-items: center;
    z-index: 1000;
}

.modal-inside {
    background-color: rgb(175, 190, 238);
    padding: 2rem;
    border-radius: 8px; 
    min-width: 300px;
    width: 60%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-inside h2 {
    color: #444;
    text-transform: uppercase;
}

.modal-inside input {
    border: 2px solid #444;
    border-radius: 10px;
    width: 80%; 
    margin: 0.5rem 0; 
    padding: 0.5rem;
    height: 25px;
}

.label {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label p {
    width: 100%;
    color: #FFFFFF;

    font-weight: 600;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
  }
  
  .checkbox {
    display: none; 
  }
  
  .custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%; 
    border: 2px solid #fff;
    background: white;
    position: relative;
    align-self: center;
    transition: all 0.3s ease;
  }
  
  .checkbox:checked + .custom-checkbox {
    background-color: rgb(175, 190, 238);
  }
  
  .checkbox:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
  }

  .modal-inside button {
    margin-top: 1rem; padding: 0.5rem 1rem;
    }

    .modal.show {
    display: flex;
    }

    .error {
    color: rgb(255, 0, 55);
    font-size: 0.9rem;
    font-weight: 500;
    }

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: black;
  }

.cookies {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

.cookies-button {
    display: flex;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 6px !important;
    cursor: pointer;
    font-size: 14px !important;
    transition: all 0.5s ease;
}

.cookies-button:hover {
    transform: scale(1.1);
 
}

.cookies a {
    color: #b40101;
    text-decoration: none;
    transition: transform 0.5s ease;
}

.cookies a:hover {
    transform: scale(1.1);
}


.body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body-container {
    margin-top: 100px;
    width: 80%;
    background-color: #ffffffc7;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border-radius: 30px;
}

.body-container-main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
}

.body-container-main h1{
    margin: 0;
    font-size: 35px;
    color: #014fb4;
    text-transform: uppercase;

}

.body-container-main p {
    font-style: 25px;
    font-weight: 500;
    color: #000000;
    
}

.body-container-main button { 
    padding: 1rem 1.5rem; 
    cursor: pointer;
    border-radius: 10px;
}


.body-opacity {
    width: 100%;
    background: #014fb4;
    margin-top: 50px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body-opacity h1 {
    color: #FFFFFF;
    font-weight: 900;
    text-transform: uppercase;
}

.body-opacity p {
    font-weight: 600;
    color: #e0e0e0;
}

.body-opacity-block {
    display: flex;
    width: 99%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.opacity-el-text h1 {
    color: #FFF;
    text-transform: none;
}

.top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    background-color: snow;
    gap: 20px;
    margin-top: 20px;
    border: 2px solid snow;
    padding: 50px 0px;
}

.body-opacity-element {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    background: #5c6c8f7a;
    padding: 5px;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.body-opacity-element:hover {
    transform: scale(1.05);
    background: -webkit-linear-gradient(90deg, #9e50d3,#1a1fff,#1e98dd);
    background: linear-gradient(90deg, #9e50d3,#1a1fff,#1e98dd);
}

.body-opacity-element img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 30px #FFF;
}

.cover {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
}

.responsibility {
    margin-top: 100px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    flex-direction: column;
    width: 90%;
    color: black;
    border: 10px solid #003aa5;
}

.responsibility h1 {
    font-weight: 900;
    color: red;
}

.responsibility p {
    font-weight: 900;
}

.responsibility a {
    color: red;
}

.body-rel {
    width: 100%;
    border-radius: 50px;
    background: #003aa5;
    margin-top: 50px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.body-rel h1 {
    color: snow;
    font-weight: 900;
    text-transform: uppercase;
}

.body-rel p {
    font-weight: 600;
    color: snow;
    text-align: center;
}

.body-rel-con {
    display: flex;
    width: 80%;
    height: 100%;

    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 50%;
}

.body-rel-el h1 {
    color: #014fb4;
}

.body-rel-el {
    height: 300px;
    padding: 20px 40px;
    width: 50%;
    justify-content: space-between;
    align-items: end;
    display: flex;
    flex-direction: column;
    background-color: snow;
    margin-top: 50px;
    border-radius: 50px;
    gap: 10px;
}

.body-rel-el li {
    text-align: center;
    list-style: none;

}

.body-rel button {
    margin-top: 100px;
    padding: 1rem 1.5rem; 
    cursor: pointer;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 600;
    transition: transform 0.5s ease;
}

.body-rel button:hover {
    transform: scale(1.1);
}

.body-rel img {
    margin-top: 20px;
    border-radius: 50px;
    border: 3px solid red;
    width: 50%;
}

.body-smart {
    margin-top: 100px;
    width: 90%;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    background-color: #FFFFFF;
    padding: 50px;
    align-items: center;
}

.smart-wrapp {
    width: 100%;
    display: flex;
    gap: 20px;
}

.smart-wrapp-el {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.smart-wrapp-el span {
    color: red;
    font-weight: 900;
}

.body-smart-block {
    width: 50%;
}

.body-smart img {
    width: 50%;
}

.body-smart-block h1 {
    color: #003aa5;
    text-transform: uppercase;
    font-weight: 900;
}

.body-smart-block h2 {
    color: red;
    text-transform: uppercase;
    font-weight: 700;
}

.body-smart-block p {
    color: #222222;
    font-weight: 500;
}

.body-smart-block li {
    color: #222222;
    font-weight: 500;
    margin-top: 5px;
}

.body-smart-block button {
    padding: 1rem 1.5rem; 
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.5s ease, background-color 0.5s ease;
    margin-top: 50px;
}

.body-smart-block button:hover {
    transform: scale(1.05);

}

.exp {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.exp-con {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.exp-con h1 {
    font-size: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #003aa5;
    background-color: #FFFFFF;
    padding:10px 20px;
}


.exp-con-wrapp {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    gap: 20px;
    margin-top: 50px;
}

.exp-el {
    width: 30%;
    justify-content: space-around;
    align-items: center;
    display: flex;
    flex-direction: column;
    background: -webkit-linear-gradient(90deg, #9e50d3,#1a1fff,#1e98dd);background: linear-gradient(90deg, #9e50d3,#1a1fff,#1e98dd);
    padding: 20px;
    height: 100%;
    border-radius: 30px;
}

.exp-el h2 {
    color: #FFFFFF;
    text-transform: uppercase;
    width: 100%;
}

.exp-el p {
    font-weight: 700;
    width: 100%;
    color: #FFFFFF;
}

.exp-el li {
    font-weight: 700;
    width: 100%;
    color: #FFFFFF;
}

.exp-con button {
    margin-top: 50px;
    margin-top: 100px;
    padding: 1rem 1.5rem; 
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.exp-con button:hover {
    transform: scale(1.05);
}

.people-say {
    margin-top: 100px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #003aa5;
    padding: 50px;
    margin-bottom: 100px;
    border-radius: 50px;
}

.people-say h1 {
    color: #FFF;
    text-transform: uppercase;
}

.people-say-con {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 20px;
}

.people-say-con-el {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    text-align: center;
    color: #003aa5;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 30px;
    transition: transform 0.5s ease;
    
}

.people-say-con-el:hover {
    transform: scale(1.05);
}

.people-say-con-el p {
    font-weight: 500;
}

.faq {
    width: 100%;
    padding: 50px;
    background: -webkit-linear-gradient(90deg, #9e50d3,#1a1fff,#1e98dd);background: linear-gradient(90deg, #9e50d3,#1a1fff,#1e98dd);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-con {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-con-left {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-con-left h1 {
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    font-size: 35px;
}

.faq-con-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 30px;
}
.faq-con-left h2 {
    color: #1e98dd;
    text-align: center;
}

.faq-con-left p {
    color: #333;
    font-weight: 900;
    width: 100%;
    text-align: center;
}

.faq-con-grid-el {
    background-color: snow;
    padding: 0px 30px;
    border-radius: 30px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
    height: 150px;
    border: 3px solid #1e98dd;
}

.faq-con-grid-el:hover {
    transform: scale(1.1);
}

.warn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.warn-con {
    width: 80%;
    background-color: #ff0000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.warn-con h1 {
    color: #FFFFFF;
    text-transform: uppercase;
}

.warn-con p {
    color: #FFFFFF;
}

.warn-con span {
    color: #fff;
    font-weight: 900;
}

.warn-con a {
    color: #fff;
    font-weight: 900;
}


.footer-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    padding: 50px;
    justify-content: center;
    align-items: center;
}

.footer-resources {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: 100px;
}

.footer-resources img {
    width: 100px;
    height: auto;
}

.footer-resources a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    text-decoration: none;
    color: red;
    font-weight: 900;
    font-size: 10px;
}

.footer-main {
    width: 90%;
    display: flex;
    color: snow;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}

.footer-column {
    height: 100%;

}
ul li a{
    text-decoration: none;
    color: snow;
    margin-top: 5px;
}

.footer-column form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-form input{
    padding: 10px;
    border-radius: 10px;
    border: none;
}

.subscribe-form button {
    padding: 0.5rem 1rem; 
    cursor: pointer;
    border: none;
    border-radius: 10px;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.subscribe-form button:hover {
    transform: scale(1.05);
}

.footer-note {
    font-size: 10px;
    text-align: center;
    margin-top: 50px;
    color: snow;
}

.ad-text {
    color: snow;
    width: 95%;
    text-align: center;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #333;
}

main a {
    color: #620a0a;
    font-weight: 900;
}


main section h1 {
    color: #620a0a;
    text-transform: uppercase;
}

main section h2 {
    color: #ff6e6e;
}

main section {
    width: 90%;
    background-color: #FFF;
    padding: 25px;
    border-radius: 50px;

}

@media (max-width: 1000px) {
   h1 {
        font-size: 15px !important;
        text-transform: none !important;
        text-align: center;
   }

   h2 {
        font-size: 15px !important;
   }

   p {
        font-size: 10px !important;
   }

   a {
    font-size: 10px !important;
    }

    .header img{
        width: 50px;
    }

    .header button {
        padding: 5px 10px !important;
    }

    .body-container {
        flex-direction: column !important;
        text-align: center;
    }

    .body-opacity p {
        text-align: center;
    }

    .body-opacity-block {
        grid-template-columns: 1fr !important;
    }

    .body-opacity-element img {
        height: 60px !important;
        width: 60px !important;
    }


    .responsibility p {
        text-align: center;
    }

    .body-rel {
        width: 100% !important;
    }

    .body-rel-con  {
        flex-direction: column !important;
        width: 95% !important;
        gap: 20px !important;
    }


    .body-rel-el {
        height: 200px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .body-rel img {
        width: 95%;
    } 

    li {
        font-size: 10px !important;
    }

    .body-smart {
        flex-direction: column!important;
    }

    .body-smart img {
        width: 95%; 
    }

    .body-smart-block {
        width: 95%;
    }

    .exp-con{ 
        flex-direction: column !important;
    }

    .exp-con-wrapp {
        flex-direction: column !important;
    }

    .exp-el {
        width: 90% !important;
    }

    .people-say-con {
        flex-direction: column;
    }
    
    .people-say-con-el {
        width: 95%;
    }

    .footer-resources {
        gap: 10px !important;

    }

    .footer-resources img {
        width: 30px !important;
    }

    span {
        font-weight: 600 !important;
        text-align: center;
    }

    .footer-main {
        flex-direction: column;
        width: 90%;
        align-items: start !important;

    }
}