
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Open Sans, sans-serif;
    background-color: white;
    color: black;
}

/* Header Section */
header {
    background-color: #D9261C;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -7px;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 52px;
}

.logo span {
    font-weight: 600;
    font-size: 18px;
}

.download-btn {
    background-color: #2de09d;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 12px;
}

/* Top Content Section */
.top-content {
    padding: 20px;
    text-align: center;
    background-color: white;
    background-image: url('../images/bg1.png'); /* Optional background wave */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.top-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.top-content p {
    font-size: 19px;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #000;
}

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

.actions a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 12px;
}

.start-btn {
    background-color: #2de09d;
    color: white;
}

.demo-btn {
    background-color: transparent;
    color: white
}

.what-is-section {
    background: url(../images/bg2.png);
    background-size: cover;
    background-color: #1c1f30;
    padding: 30px;
    text-align: center;
    color: white;
}

.what-is-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.what-is-section p {
    font-size: 12px;
    line-height: 1.6;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.what-is-section .underline {
    margin: 20px auto;
    display: block;
    width: 177px;
    height: auto;
}

.benefits-section {
    background: url(../images/bg6.png);
    background-size: cover;
    background-color: #1c1f30;
    padding: 20px;
    text-align: center;
    color: white;
}

.benefits-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefits-center-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

.benefits-button {
    display: inline-block;
    background-color: #2de09d;
    color: white;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 9999px;
    font-size: 14px;
    text-decoration: none;
}

.why-section {
    background-size: cover;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.why-section .section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 350px;
    margin: 5px auto;
}

.why-item img {
    width: 130px;
    height: 130px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

.why-section .reversed {
    flex-direction: row-reverse;
}

.why-text p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin: 0;
}

.why-section .reversed p {
    text-align: right;
}



.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #202237;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 24px;
    height: 24px;
}

.why-card-left p {
    font-size: 12px;
    color: white;
}

.arrow-icon {
    width: 35px;
    height: auto;
    transition: transform 0.2s ease;
}

.arrow-icon:hover {
    transform: translateX(5px);
}

.why-card-right {
    flex: 1;
}

.why-card-right img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.security-section {
    background: url(../images/bg4.png);
    background-size: cover;
    background-color: #1c1f30;
    padding: 20px;
    padding-top: 0;
    text-align: center;
    color: white;
}

.security-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.security-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap; /* Ensures cards stay in a row unless viewport is too narrow */
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}


.security-card {
    background-color: #2F3250;
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.security-card img {
    width: 100%;
    height: auto;
    display: block;
}

.security-text {
    color: #79EFBC;
    font-size: 12px;
    font-weight: 400;
    padding: 20px;
    text-align: center;
    line-height: 1.5;
}

.faq-section {
    background: url(../images/bg5.png) bottom right no-repeat;
    background-color: #1c1f30;
    color: white;
    padding: 20px;
    text-align: center;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-underline {
    margin-bottom: 10px;
    width: 197px;
    height: auto;
}

.faq-box {
    background-color: #232643;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    border-bottom: 2px solid #2de09d;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 12px;
    font-weight: 400;
    color: #ccc;
    line-height: 12px;
}

.testimonials-section {
    background-color: #1c1f30;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    width: 100%;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.testimonial-card {
    background-color: #2b3057;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    box-sizing: border-box;
}


.testimonial-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card strong {
    color: #2de09d;
    display: block;
    margin-bottom: 6px;
}

.testimonial-card p {
    margin: 0;
    font-size: 14px;
    color: #ddd;
}

.signup-section {
    background-color: white;
    color: black;
    text-align: center;
}

.signup-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.signup-box {
    background: linear-gradient(to bottom, #b71101, #99140b);
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px;
    max-width: 350px;
}

.signup-subtitle {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.5;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-wrapper input {
    padding: 12px 16px;
    border-radius: 8px;
    background: white;
    color: black;
    font-size: 14px;
    outline: none;
}

.input-wrapper input::placeholder {
    color: #aaa;
}

.signup-form button {
    background-color: #F14635;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid white;
}

.signup-form button:hover {
    background-color: #e15a5a;
}

.president-message {
    margin-top: 15px;
    background: url(../images/bg2.png);
    background-size: cover;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.president-message .container {
    margin: 0 auto;
    text-align: center;
}

.president-message .title {
    font-size: 20px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

.message-card {
    border-radius: 20px;
    padding: 30px;
    position: relative;
    background: #fff;
    border: 1px solid #F14635;
    margin: 0 auto;
    margin-top: 135px;
    max-width: 350px;
}

.image-box {
    margin-bottom: 5px;
}

.image-box img {
    margin-top: -135px;
    width: 200px;
    height: auto;
    border-radius: 12px;
}

.message-content {
    position: relative;
    padding: 10px 10px 0;
    margin-top: -60px;
}

.quote-icon {
    font-size: 48px;
    margin-top: -100px;
    width: 22px;
    height: 22px;
    color: #d62f34;
}

.message-author {
    font-size: 13px;
    line-height: 13px;
    color: #d62f34;
    margin-top: 10px;
    font-weight: 400;
}

.message-text {
    font-size: 17px;
    line-height: 22px;
    font-weight: 300;
    color: #333;
    margin-top: 15px;
    text-align: justify;
}

.basic-info {
    background-image: url("../images/bg3.png"); /* поместите фон в images/ */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #fff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

.basic-info .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.basic-info .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1c1c1c;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.info-item {
    width: 260px;
    background: transparent;
    border: 1px solid #F14635;
    border-radius: 25px;
    padding: 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #F14635;
    text-align: center;
    align-self: flex-start;
}

.info-boxes .on-end {
    align-self: flex-end !important;
}

.info-item img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: -27px;
}

.info-item p {
    margin: 0;
    line-height: 1.5;
    margin-top: -12px;
}

.info-item strong {
    color: #d62f34;
    font-weight: 600;
}
.advantages-section {
    background: url(../images/bg5.png);
    background-size: cover;
    background-color: #fff;
    padding: 10px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.advantages-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.advantage-paragraph {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 12px;
    text-align: justify;
}

.advantage-item {
    margin-bottom: 10px;
    text-align: justify;
}

.image-box {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    margin-bottom: 12px;
}

.advantage-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}


.footer-section {
    background: white;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.footer-section img {
    cursor: pointer;
}

.footer-note {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    color: #B51000;
    margin-top: 10px;
}

.footer-note .highlight {
    font-weight: 600;
}
