* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    /*background: #f5f7fb;*/
    /*color: #1f2937;*/
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fb, #f5f7fb);
}

.container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content h1 {
    color: #000000;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.content p {
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.features {
    list-style: none;
}

.features li {
    color: #000000;
    margin-bottom: 12px;
    font-size: 16px;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card h2 {
    margin-bottom: 25px;
    color: #111827;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
}

button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}

.note {
    margin-top: 15px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 30px;
    /*background: #fff;*/
    /*color: #6b7280;*/
    background: #f5f7fb;
    color: #1f2937;
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }

    .content h1 {
        font-size: 38px;
    }
}

.stats-section {
    width: 100%;
    padding: 20px 0;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

/* Icon box */
.stat-icon {
    width: 52px;
    height: 52px;

    border: 1px solid #d9d7ff;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #ffffff;
}

.stat-icon svg {
    width: 22px;
    height: 22px;

    stroke: #b43cff;
    stroke-width: 1.8;
    fill: none;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 400;
    color: #111111;
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    line-height: 1.2;
    color: #92929a;
    white-space: nowrap;
}


/* -------------------------
   Responsive
------------------------- */

@media (max-width: 768px) {

    .stats-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;

        padding: 0 25px;
    }

    .stat-item {
        width: 100%;
    }
}

/* ==============================
   Welcome Offer Banner
   ============================== */

.welcome-banner {
    width: 100%;
    height: 70px;

    background: #791CF0;
    border-top: 8px solid #3b3b3b;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
}

.welcome-content {
    width: 100%;
    max-width: 900px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}

.welcome-text {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;

    line-height: 1.4;
    white-space: nowrap;
}

.welcome-text strong {
    font-weight: 600;
}


.button-arrow {
    font-size: 17px;
    line-height: 1;

    transition: transform 0.2s ease;
}



/* ==============================
   Mobile
   ============================== */

@media (max-width: 768px) {

    .welcome-banner {
        height: auto;
        min-height: 70px;

        padding: 10px 15px;
    }

    .welcome-content {
        flex-direction: column;
        gap: 8px;
    }

    .welcome-text {
        flex-wrap: wrap;
        white-space: normal;
        text-align: center;

        font-size: 13px;
    }
}
