{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (max-width: 1024px) {

    .container {
        width: 90%;
    }

    .header__inner {
        flex-wrap: wrap;
        gap: 15px;
    }

    .content__hero-img {
        width: 100%;
    }

    .footer__contact,
    .form {
        flex: 1 1 100%;
    }
}
    
}
body.pages {
    font-family: "Segoe UI", sans-serif;
    background-color: #FFFFFF 0% 0% no-repeat padding-box;
}


.container {
    width: 1100px;
    margin: 0 auto;
}

.header {
    background-color: #1f4ed8;
    padding: 40px ;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo-img {
    width: 30px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
     border-bottom: 2px solid #100f0f;
}

.nav__link:hover {
    opacity: 1;
}


.header__button {
    background-color: #9ec5ff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
}


.content__hero {
        color: #fff;
        text-align: center;
    padding-bottom: 120px;
}

.content__hero-img {
    display: block;
    width: 900px;
    margin: 50px auto -80px;
    border-radius: 5px;
}


.main__inner {
    background-color: #FFFFFF 0% 0% no-repeat padding-box;
    padding: 30px;
    border-radius: 12px;
    margin-top: -60px;
}


.main__inner h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.photos {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.photos__img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.main__text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}


.main__button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.main__button-link {
    background-color: #1f4ed8;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.main__button-link:hover {
    background-color: #173bb0;
}


.footer {
    position: relative;
    background: linear-gradient(135deg, #0a3cff, #1f66ff);
    color: #fff;
    padding: 90px 0 40px;
    overflow: hidden;
}


.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.08);
    filter: blur(120px);
    border-radius: 50%;
}

.footer::before {
    top: -120px;
    left: -120px;
}

.footer::after {
    bottom: -120px;
    right: -120px;
}

.footer .container {
    max-width: 1100px;
    margin: 0 auto;             
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;                  
    flex-wrap: wrap;
}


.footer__contact,
.form {
    flex: 1;
}                   


.footer__title {
    font-size: 26px;
    margin-bottom: 25px;
}


.contact__label {
    font-size: 13px;
    opacity: 0.6;
    display: block;
}

.contact__link,
.contact__text {
    display: block;
    margin-bottom: 18px;      
    color: #fff;
    text-decoration: none;
}

/
.form__inner {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.form__input,
.form__textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(21, 20, 20, 0.193);
    padding: 10px 0;
    color: #fff;
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-bottom: 1px solid rgba(255,255,255,0.8);
}

.form__button {
    align-self: flex-end;
    background: #fff;
    color: #1f66ff;
    border: none;
    padding: 8px 26px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.form__button:hover {
    background: #e6ecff;
}


.footer__bottom {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.8;
}

.footer__bottom img {
    width: 14px;
    margin: 0 5px;
}
footer__web{
    display: flex;
    align-items: center;
}