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

body {
    font-family: Inter, sans-serif;
    background-color: #ffffff;
    color: #000;
}

.container {
    background: url(../images/bg1.png);
    background-size: cover;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 15px;
}

.header {
    text-align: center;
    margin-bottom: 15px;
    background: red;
    padding: 15px;
}

.logo {
    max-height: 40px;
}

.title {
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.highlight {
    color: #f33;
}

.cta-box {
    background-color: #f33;
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.form input[type="text"],
.form input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid red;
    border-radius: 20px;
    font-size: 16px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 30%;
}

.phone-group input {
    width: 70%;
}

.features {
    list-style: none;
    margin: 20px 0;
    padding: 25px;
    border-radius: 25px;
    background: #F8F8F8;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.features img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.red {
    color: #e53935;
    font-weight: bold;
}

.submit-btn {
    background-color: #f33;
    color: #fff;
    width: 100%;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #d32f2f;
}
