.main-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-container {
    text-align: center;
    max-width: 700px;
    width: 100%;
    margin: 2rem auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.08),
        0 0 1px 1px rgba(0, 0, 0, 0.04);
}

.hero-container h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-container h1 span {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-container p {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.btn-start:hover {
    background: #e5e7eb;
    color: #1f2937;
}