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

body {
    font-family: Inter, sans-serif;
    background: white;
    color: #0b1e54;
    text-align: center;
}

.header {
    background-color: #0b1e54;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: -5px;
}

.logo {
    height: 60px;
}

.content {
    background: url(../images/bg1.png);
    background-size: cover;
    padding: 40px 20px;
    padding-bottom: 5px;
}

.main-question {
    font-size: 20px;
    font-weight: bold;
    color: #0b1e54;
    line-height: 25px;
    margin-bottom: 20px;
}

.explanation {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.experience {
    font-size: 20px;
    font-weight: bold;
    color: #0b1e54;
}

.testimonial-section {
    background-image: url('../images/bg2.png');
    background-size: cover;
    background-position: center;
    padding: 20px;
    color: #0b1e54;
}

.testimonial-container {
    max-width: 500px;
    margin: 0 auto 15px;
    text-align: center;
}


.speech-bubble {
    background-color: #fff;
    padding: 20px;
    border-radius: 25px;
    border: 1px solid #021D62;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-left: 30px;
}

.name {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 10px;
    color: black;
}

.quote {
    font-size: 11px;
    line-height: 18px;
    color: black;
}

.info-block {
    text-align: center;
    color: #0b1e54;
}

.highlight {
    font-weight: bold;
    margin-bottom: 10px;
}

.explanation {
    font-size: 15px;
    margin-bottom: 15px;
}

.how-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    background: transparent;
}

.step-number {
    height: 63px;
    width: auto;
}

.step-box {
    background-color: #0b1e54;
    color: #fff;
    border-radius: 20px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    flex: 1;
    text-align: left;
}

.speech-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: black;
}

.speech-top-text {
    display: flex;
    flex-direction: column;
    margin-top: -10px;
}

@media screen and (min-width: 500px) {
    .steps {
        align-items: center;
    }
}

.form-section {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.form-box {
    background-color: #0b1e54;
    border-radius: 20px;
    padding: 30px 20px;
    color: #fff;
    max-width: 350px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.form-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-box form input[type="text"],
.form-box form input[type="tel"] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-bottom: 12px;
    font-size: 14px;
}

.phone-input {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 0 8px;
    margin-bottom: 16px;
}

.phone-input .flag {
    font-size: 14px;
    margin-right: 8px;
    white-space: nowrap;
}

.phone-input input {
    border: none;
    flex: 1;
    padding: 12px 8px;
    font-size: 14px;
}

.form-box form button {
    background: linear-gradient(to right, #4a90e2, #007aff);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}

.cashout-section {
    padding: 5px;
    text-align: center;
    color: #0b1e54;
    background-image: url('../images/bg2.png');
    background-size: cover;
}

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

.methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.method img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.note {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: black;
}

.note .gray {
    color: #031D61;
    font-size: 13px;
}

.reviews-section {
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #0b1e54;
}

.reviews-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.reviews-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #8DAEF659;
    border-radius: 25px;
}

.rating {
    font-size: 18px;
    font-weight: bold;
}

.star-icon {
    width: 18px;
    height: 18px;
}

.count {
    font-size: 14px;
}

.trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: black;
}

.badge-icon {
    width: 18px;
    height: 18px;
}

.review {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    font-size: 11px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.name {
    font-weight: bold;
    margin: 0;
}

.hearts {
    display: flex;
    color: #f57c00;
    font-weight: bold;
}

.text {
    font-size: 14px;
    line-height: 1.5;
    color: black;
    text-align: left;
    margin-left: 40px;
}

.review-head .phone {
    color: #050F2C4D;
}

.footer {
    background-color: #0b1e54;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.6;
}

.footer a {
    color: #ffffff;
    text-decoration: underline;
}

.footer .store-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer .store-buttons img {
    width: 140px;
    height: auto;
}
