* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.wrapper {
    width: 100%;
    max-width: 1000px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    min-height: 600px;
}

.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #b30000 0%, #8a0000 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.left-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.logo {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.logo span {
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 0.9;
}

.illustration {
    z-index: 2;
    margin: 30px 0;
    text-align: left;
    width: 100%;
    position: relative;
}

.illustration i {
    font-size: 6rem;
    color: white;
    opacity: 0.9;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
    transition: all 0.5s ease;
}

.illustration:hover i {
    transform: scale(1.05);
    opacity: 1;
}

.features-left {
    margin-top: 30px;
    z-index: 2;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.6rem;
    margin-right: 15px;
    opacity: 0.9;
    min-width: 30px;
    text-align: center;
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.right-panel {
    flex: 1.2;
    background-color: #ffffff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2b2b;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

h1 span {
    color: #b30000;
    font-weight: 800;
    display: block;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.btn {
    background: linear-gradient(135deg, #b30000 0%, #8a0000 100%);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(179, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(179, 0, 0, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(179, 0, 0, 0.3);
}

.btn i {
    margin-left: 10px;
    font-size: 1rem;
}

.features-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 3rem;
    width: 100%;
    max-width: 500px;
}

.feature-card {
    background: #f9f9f9;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid #b30000;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #f0f0f0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 1.6rem;
    color: #b30000;
    margin-right: 15px;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card span {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

/* How it works section */
.how-it-works {
    margin-top: 40px;
    width: 100%;
    max-width: 500px;
}

.how-it-works h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.how-it-works h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #b30000;
    border-radius: 3px;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.steps:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #b30000;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: #b30000;
    color: white;
    transform: scale(1.1);
}

.step-text {
    font-size: 0.9rem;
    color: #666;
    max-width: 120px;
    margin: 0 auto;
    line-height: 1.4;
}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Responsive design adjustments */
@media (max-width: 1100px) {
    .wrapper {
        max-width: 900px;
    }

    h1 {
        font-size: 2.3rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .illustration i {
        font-size: 5.5rem;
    }
}

@media (max-width: 900px) {
    .wrapper {
        flex-direction: column;
        max-width: 600px;
        min-height: auto;
    }

    .left-panel,
    .right-panel {
        padding: 40px 30px;
        width: 100%;
    }

    .left-panel {
        text-align: center;
        align-items: center;
        border-radius: 20px 20px 0 0;
    }

    .features-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        justify-content: center;
    }

    h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        align-self: center;
    }

    .features-right {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .how-it-works {
        margin-left: auto;
        margin-right: auto;
    }

    .how-it-works h3 {
        text-align: center;
    }

    .how-it-works h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .wrapper {
        border-radius: 18px;
    }

    .left-panel,
    .right-panel {
        padding: 30px 25px;
    }

    .logo {
        font-size: 2.3rem;
    }

    .logo span {
        font-size: 1rem;
    }

    .illustration i {
        font-size: 5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .features-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .steps {
        flex-direction: column;
        gap: 25px;
    }

    .steps:before {
        display: none;
    }

    .step {
        display: flex;
        align-items: center;
        text-align: left;
    }

    .step-number {
        margin: 0 15px 0 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }

    .step-text {
        max-width: none;
    }


}

@media (max-width: 480px) {

    .left-panel,
    .right-panel {
        padding: 25px 20px;
    }

    .logo {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .illustration {
        margin: 20px 0;
    }

    .illustration i {
        font-size: 4rem;
    }

    .feature-item {
        margin-bottom: 15px;
    }

    .feature-item i {
        font-size: 1.4rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .feature-card {
        padding: 12px;
    }

    .feature-card i {
        font-size: 1.4rem;
        margin-right: 12px;
    }

    .feature-card span {
        font-size: 0.95rem;
    }

    .how-it-works {
        margin-top: 30px;
    }

    .how-it-works h3 {
        font-size: 1.2rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 10px auto;
    }


}

@media (max-width: 360px) {
    .logo {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    .illustration i {
        font-size: 3.5rem;
    }
}