* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-rounded, 'SF Pro Rounded', 'Hiragino Sans Round', 'Nunito', 'Quicksand', Avenir, Roboto, Arial, sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 1400px;
    width: 100%;
}

.faq-card {
    background: white;
    border-radius: 40px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    border: 1px solid #d1d5db;
}

.left-section {
    flex: 1;
    position: relative;
}

.badge {
    background: #d4f54e;
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 500;
    padding: 25px 110px;
    border-radius: 50px;
    display: inline-block;
    transform: rotate(-26deg);
    position: absolute;
    top: 50px;
    left: 100px;
    z-index: 10;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    color: #1e1548;
    line-height: 1.1;
    position: relative;
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.description {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
}

.cta-button {
    background: linear-gradient(180deg, #1a1a1a 0%, #4c1d95 60%);
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 24px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
}

.cta-button svg {
    margin-left: 5px;
}
