/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display:none;}
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
ul li{list-style:none;}
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/

/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #e0f7e9 0%, #a3d6b7 100%);
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
    /*color: #333;*/
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.wrapper {
  min-height: 100%;
/*   overflow: hidden; */
  display: flex;
  flex-direction: column;
}
/* Шапка */
header {
    text-align: center;
    padding: 20px;
}
main {
    text-align: center;
    flex: 1 1 auto;
}
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}
.header__logo {
    /*display: flex;*/
    text-align: center;
}
.header__logo img{
    max-width: 100%;
}
.fp-rewue {
      /*width: 600px; *//* начальный размер логотипа */
      animation: scaleLogo 2s ease-in-out forwards; /* анимация */
    }

    @keyframes scaleLogo {
      from {
        transform: scale(0.5); /* начальный масштаб 50% */
      }
      to {
        transform: scale(1); /* конечный масштаб 100% */
      }
    }
/*.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}*/

/* Основной блок */
.zaglush {
    text-align: center;
    padding: 50px 20px;
    /*flex: 1 1 auto;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    line-height: 40px;
}

p {
    font-size: 22px;
    margin-bottom: 10px;
    /*max-width: 600px;*/
}
.ourmail {
    margin-bottom: 30px;
}
/* Форма */
.email-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 500px;
    width: 100%;
}

.email-form input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
    outline: none;
}

.email-form button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #1557b0;
}

/* Анимация загрузки */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #1a73e8;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
/* .issuu-embed {
  width: 100%;
  max-width: 800px; 
  margin: 0 auto;
} */
/* .issuu-container {
  display: flex;
  justify-content: space-between; 
  gap: 20px; 
  flex-wrap: wrap; 
}
.issuu-container iframe {
  flex: 1; 
  max-width: 33.333%; 
  height: 400px; 
}
@media (max-width: 768px) {
  .issuu-container iframe {
    max-width: 100%; 
  }
} */
.issuu-container {
	margin-bottom: 40px;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Подвал */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}

footer a {
    color: #1a73e8;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input,
    .email-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .zaglush {
        padding: 30px 15px;
    }
}