* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: #f0f0f5;
    border-radius: 30px;
    padding: 80px 60px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #4a0e4e;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    color: #4a0e4e;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

p {
    color: #2d2d2d;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #7b1fa2;
    color: white;
    font-size: 22px;
    font-weight: 500;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.cta-button:hover {
    background: #6a1b8f;
}
